github.com/nikandfor/tlog@v0.21.5-0.20231108111739-3ef89426a96d/cmd/tlog/main.go (about) 1 package main 2 3 import ( 4 "os" 5 6 "github.com/nikandfor/cli" 7 8 "github.com/nikandfor/tlog/cmd/tlog/tlogcmd" 9 ) 10 11 func main() { 12 app := tlogcmd.App() 13 14 cli.RunAndExit(app, os.Args, os.Environ()) 15 }