Implement 'delete' command for interface removal and refactor 'add' command

This commit is contained in:
tuna2134
2026-06-30 12:22:53 +09:00
parent ff7f594a84
commit ebe437161b
5 changed files with 52 additions and 10 deletions

View File

@@ -1,16 +1,21 @@
/*
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: "Ethernet over IPv6(RFC3378)カーネルのクライアント",
Short: "EtherIP RFC3378 Client",
Long: `Ethernet over IPv6`,
}
func Execute() {