commit 91b369ff5320a8f9004370d45a94a21d3ce01328 Author: juancwu <46619361+juancwu@users.noreply.github.com> Date: Sun Dec 7 17:08:47 2025 -0500 init go mod diff --git a/README.md b/README.md new file mode 100644 index 0000000..3b3a601 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +#Gossip diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..a2494ea --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gossip + +go 1.25.1 diff --git a/main.go b/main.go new file mode 100644 index 0000000..8a33282 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Let the gossip start") +}