go init or whatever

This commit is contained in:
Sakooooo 2024-11-21 10:01:50 +04:00
parent 4a16875f5f
commit 86ea4b0ac4
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 13 additions and 0 deletions

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module git.sako.lol/sako/voidway/v4
go 1.23.3

3
gomod2nix.toml Normal file
View file

@ -0,0 +1,3 @@
schema = 3
[mod]

7
hello.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hi")
}