Add a minimal CLI

This commit is contained in:
2026-05-04 21:08:40 -05:00
parent fd78f2c883
commit 526ee463f2
4 changed files with 379 additions and 0 deletions

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

@@ -0,0 +1,11 @@
package main
import (
"os"
"gitea.maximumdirect.net/eric/scriptorium/internal/adapter/cli"
)
func main() {
os.Exit(cli.Run(os.Args[1:], os.Stdout, os.Stderr))
}