From 91b369ff5320a8f9004370d45a94a21d3ce01328 Mon Sep 17 00:00:00 2001 From: juancwu <46619361+juancwu@users.noreply.github.com> Date: Sun, 7 Dec 2025 17:08:47 -0500 Subject: [PATCH] init go mod --- README.md | 1 + go.mod | 3 +++ main.go | 7 +++++++ 3 files changed, 11 insertions(+) create mode 100644 README.md create mode 100644 go.mod create mode 100644 main.go 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") +}