/* Copyright © 2026 Masato Kikuchi */ 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() { }