chore: initialize go module and cmd skeleton

This commit is contained in:
Mathias Bergqvist
2026-04-17 07:04:08 +02:00
parent 5e130e1965
commit dc574eca1a
4 changed files with 28 additions and 0 deletions

11
cmd/supervisor/main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"os"
)
func main() {
fmt.Fprintln(os.Stderr, "supervisor: not yet implemented")
os.Exit(1)
}