feat(cli): mgit CLI over the library (flags accepted after positionals)

This commit is contained in:
2026-08-29 16:21:03 -05:00
parent 5b35e8cd84
commit 9b08589092
4 changed files with 1023 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// Command mgit is the Gitea CLI over the mopac-gitea-go library.
package main
import (
"os"
"git.knownelement.com/ukrrs/mopac-gitea-go/internal/cli"
)
func main() {
os.Exit(cli.Run(os.Args[1:], os.Stdout, os.Stderr))
}