Brijesh's Git Server — watchman_client @ 0577d0a677827a615ca5a0372467980fdc703ee6

client library for using watchman in go programs

v0.0.1
Brijesh ops@brijesh.dev
Wed, 03 Jul 2024 12:43:15 +0530
commit

0577d0a677827a615ca5a0372467980fdc703ee6

2 files changed, 10 insertions(+), 0 deletions(-)

jump to
A go.mod

@@ -0,0 +1,3 @@

+module github.com/wbrijesh/watchman_client + +go 1.22.4
A main.go

@@ -0,0 +1,7 @@

+package watchman_client + +import "fmt" + +func ExampleFunction() { + fmt.Println("hello") +}