doc: first

This commit is contained in:
2025-12-14 19:40:55 -05:00
parent 3cfc9b4aed
commit 1427d0d780
5 changed files with 507 additions and 45 deletions

View File

@@ -18,10 +18,14 @@ import (
//go:embed core/*
var core embed.FS
//go:embed index.html
var documentation string
func init() {
config.Port = flag.Int("p", 3000, "Set the server port")
config.Color = flag.Bool("no-color", false, "Disable color output")
config.Core = core
config.Doc = documentation
}
func main() {