2024-03-29 09:04:20 +01:00
|
|
|
/*
|
2024-04-26 08:48:48 +02:00
|
|
|
Copyright © 2024 Raul <raul@bulgariu.xyz>
|
2024-03-29 09:04:20 +01:00
|
|
|
*/
|
2024-04-01 12:28:22 +02:00
|
|
|
|
2024-03-29 09:04:20 +01:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
2024-04-26 08:48:48 +02:00
|
|
|
"os"
|
2024-03-29 09:04:20 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var rootCmd = &cobra.Command{
|
|
|
|
Use: "mini-chat",
|
2024-04-26 08:48:48 +02:00
|
|
|
Short: "Application for hosting and joining a simple chat server",
|
2024-03-29 09:04:20 +01:00
|
|
|
|
2024-04-26 08:48:48 +02: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() {
|
|
|
|
}
|