feat: inital commit

- added template subcmd which generates frc project templates
This commit is contained in:
2025-10-14 23:48:14 -04:00
commit 12cefa9092
15 changed files with 2037 additions and 0 deletions

26
main.go Normal file
View File

@@ -0,0 +1,26 @@
package main
import (
"log/slog"
"os"
"time"
"rph/state"
"rph/cmd"
"github.com/lmittmann/tint"
"github.com/mattn/go-colorable" // needed for windows :(
)
func main() {
state.Setup()
slog.SetDefault(slog.New(
tint.NewHandler(colorable.NewColorable(os.Stdout), &tint.Options{
Level: slog.LevelDebug,
TimeFormat: time.Kitchen,
}),
))
cmd.Execute()
}