Files
etherip-client/cmd/root.go

32 lines
343 B
Go

/*
Copyright © 2026 Masato Kikuchi <m-kikuchi@neody.ad.jp>
*/
package cmd
import (
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "etherip-client",
Short: "EtherIP RFC3378 Client",
Long: `Ethernet over IPv6`,
}
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
}