mini-chat/cmd/root.go

28 lines
392 B
Go
Raw Permalink Normal View History

2024-03-29 09:04:20 +01:00
/*
Copyright © 2024 Raul <raul@bulgariu.xyz>
2024-03-29 09:04:20 +01:00
*/
2024-03-29 09:04:20 +01:00
package cmd
import (
"github.com/spf13/cobra"
"os"
2024-03-29 09:04:20 +01:00
)
var rootCmd = &cobra.Command{
Use: "mini-chat",
Short: "Application for hosting and joining a simple chat server",
2024-03-29 09:04:20 +01:00
Long: `Application for hosting and joining a simple chat server`,
2024-03-29 09:04:20 +01:00
}
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
}