feat: project skeleton
Some checks failed
Build container / build (push) Failing after 41s

This commit is contained in:
Wesley van Tilburg 2025-01-02 17:24:28 +01:00
parent 171955a6cc
commit e5de8fe4f4
2 changed files with 13 additions and 0 deletions

10
cmd/director/main.go Normal file
View File

@ -0,0 +1,10 @@
package main
import (
"fmt"
)
func main(){
fmt.Println("hello world :D")
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.plabble.org/misthios/director
go 1.23.4