feat: initial version of the project

This commit is contained in:
Romain Bertrand 2025-12-08 09:49:07 +01:00
commit 5b67d39aba
13 changed files with 1538 additions and 0 deletions

15
main.go Normal file
View file

@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"codeberg.org/romaintb/fgj/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}