feat: go mod init

This commit is contained in:
Rob Watson 2025-01-18 08:34:51 +01:00
parent 35549c7c96
commit c3d8c05764
3 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.netflux.io/rob/termstream
go 1.23.5

5
main.go Normal file
View File

@ -0,0 +1,5 @@
package main
func main() {
println("Hello, World!")
}

2
mise/config.toml Normal file
View File

@ -0,0 +1,2 @@
[env]
GOTOOLCHAIN = "go1.23.5"