core: setup go module

This commit is contained in:
Maxime Bécu-Métailler
2026-06-03 09:36:34 +02:00
parent 75790c5767
commit 4542a71fcc
3 changed files with 21 additions and 0 deletions

18
cmd/service/main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"fmt"
"io"
"os"
)
func main() {
if err := run(os.Args, os.Stdin, os.Stdout); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
func run(_ []string, _ io.Reader, _ io.Writer) error {
return nil
}