init go mod

This commit is contained in:
juancwu 2025-12-07 17:08:47 -05:00
commit 91b369ff53
3 changed files with 11 additions and 0 deletions

1
README.md Normal file
View file

@ -0,0 +1 @@
#Gossip

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module gossip
go 1.25.1

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Let the gossip start")
}