paisa/cmd/serve.go

20 lines
309 B
Go
Raw Normal View History

2022-03-30 12:11:44 -04:00
package cmd
import (
"github.com/ananthakumaran/paisa/internal/server"
"github.com/spf13/cobra"
)
var serveCmd = &cobra.Command{
Use: "serve",
Short: "serve the WEB UI",
Long: "",
Run: func(cmd *cobra.Command, args []string) {
server.Listen()
},
}
func init() {
rootCmd.AddCommand(serveCmd)
}