11 lines
189 B
Go
11 lines
189 B
Go
package dhcp
|
|
|
|
import (
|
|
"github.com/hpcng/warewulf/internal/pkg/configure"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func CobraRunE(cmd *cobra.Command, args []string) error {
|
|
return configure.Dhcp()
|
|
}
|