Files
ana-ledger/cmd/main.go
bel 0baf3ccc8f
All checks were successful
cicd / cicd (push) Successful in 44s
move cmd into cmd/http as subcommand
2023-10-28 09:52:39 -06:00

16 lines
207 B
Go

package main
import (
"os"
"gogs.inhome.blapointe.com/ana-ledger/cmd/http"
)
func main() {
switch os.Args[1] {
case "http":
os.Args = append([]string{os.Args[0]}, os.Args[2:]...)
http.Main()
}
}