11 lines
194 B
Go
11 lines
194 B
Go
package dhcp
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"gitea.sunhpc.com/kelvin/sunhpc/internal/pkg/configure"
|
|
)
|
|
|
|
func CobraRunE(cmd *cobra.Command, args []string) error {
|
|
return configure.DHCP()
|
|
}
|