Эх сурвалжийг харах

Added plugin imports in cmds/coredhcp

New plugins have been added but not imported in cmds/coredhcp.

Signed-off-by: Andrea Barberio <insomniac@slackware.it>
Andrea Barberio 6 жил өмнө
parent
commit
7f5bf5bc78
1 өөрчлөгдсөн 4 нэмэгдсэн , 0 устгасан
  1. 4 0
      cmds/coredhcp/main.go

+ 4 - 0
cmds/coredhcp/main.go

@@ -6,7 +6,11 @@ import (
 	"github.com/coredhcp/coredhcp"
 	"github.com/coredhcp/coredhcp/config"
 	"github.com/coredhcp/coredhcp/logger"
+	_ "github.com/coredhcp/coredhcp/plugins/dns"
 	_ "github.com/coredhcp/coredhcp/plugins/file"
+	_ "github.com/coredhcp/coredhcp/plugins/netmask"
+	_ "github.com/coredhcp/coredhcp/plugins/range"
+	_ "github.com/coredhcp/coredhcp/plugins/router"
 	_ "github.com/coredhcp/coredhcp/plugins/server_id"
 )