commit de0c6088d5002c202ab644847bc621c9625889bb Author: lbenedar Date: Fri Feb 27 11:58:50 2026 +0300 ch2.1 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e397271 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitea.local.lab/Lbenedar/snippetbox + +go 1.25.0 diff --git a/main.go b/main.go new file mode 100644 index 0000000..70a7fe5 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello world!") +}