Skip to content
Snippets Groups Projects
Commit 180dbd95 authored by Tamer Tas's avatar Tamer Tas
Browse files

Trim down main pkg

parent 702397a6
No related branches found
No related tags found
No related merge requests found
package main
import (
cli "github.com/spf13/cobra"
"github.com/tmrts/tmplt/pkg/cmd"
)
import "github.com/tmrts/tmplt/pkg/cmd"
func main() {
mainCmd := &cli.Command{
Use: "tmplt",
}
mainCmd.AddCommand(cmd.Use)
mainCmd.AddCommand(cmd.Save)
mainCmd.AddCommand(cmd.Verify)
mainCmd.AddCommand(cmd.Version)
mainCmd.Execute()
cmd.Run()
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment