Initial commit
All checks were successful
/ test (push) Successful in 29s

This commit is contained in:
Eduard Urbach 2025-06-18 22:18:31 +02:00
commit bc5530a70a
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
12 changed files with 125 additions and 0 deletions

11
main.go Normal file
View file

@ -0,0 +1,11 @@
package main
import (
"os"
"git.urbach.dev/cli/q/src/cli"
)
func main() {
os.Exit(cli.Exec(os.Args[1:]))
}