Files
mopac-redmine-go/cmd/mred/main.go
T
mrcharles d98f0aeb93 Add the mred CLI over the library, with flags accepted after positionals
issue list/show/create/update, version list/create, category
list/create, relation create. Names resolve case-insensitively against
server enumerations; -o json everywhere; exit 0/1/2 with one-line
stderr carrying the http status for API failures.
2026-08-29 06:51:54 -05:00

13 lines
232 B
Go

// Command mred is the Redmine CLI over the mopac-redmine-go library.
package main
import (
"os"
"git.knownelement.com/ukrrs/mopac-redmine-go/internal/cli"
)
func main() {
os.Exit(cli.Run(os.Args[1:], os.Stdout, os.Stderr))
}