This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
gootp/cmd/gootp/main.go

25 lines
352 B
Go

package main
import (
"log"
"os"
"github.com/Kichiyaki/gootp/cmd/gootp/decrypt"
"github.com/urfave/cli/v2"
)
func main() {
app := &cli.App{
Name: "gootp",
EnableBashCompletion: true,
Commands: []*cli.Command{
decrypt.NewCommand(),
},
}
if err := app.Run(os.Args); err != nil {
log.Fatalln("app.Run:", err)
}
}