Files
mopac-bitwarden-go/cmd/bitwarden-go/main.go
T
mrcharles edf056eb9f Add the thin CLI: login, projects, secrets list, get
Read-path commands over the library. Credentials never come from flags
or arguments; get prints the bare value for $(...) plumbing and nothing
else ever touches stdout; stderr carries only redacted diagnostics. Exit
codes mirror keyproxy (0 ok, 1 usage/config, 2 auth or resolution
failure). CLI tests drive the fake server through a real 0600 env file.
2026-08-29 00:08:38 -05:00

14 lines
303 B
Go

// Command bitwarden-go is the Secrets Manager read CLI. All behavior
// lives in internal/cli; this file only wires stdio and exit codes.
package main
import (
"os"
"git.knownelement.com/ukrrs/mopac-bitwarden-go/internal/cli"
)
func main() {
os.Exit(cli.Run(os.Args[1:], os.Stdout, os.Stderr))
}