collapses config into one library

This commit is contained in:
2022-10-11 08:11:29 -05:00
parent 7468a6dcb4
commit cd14bc11fa
4 changed files with 20 additions and 25 deletions

View File

@ -6,7 +6,7 @@ import (
"os/signal"
"syscall"
"mutating-webhook/internal/initialize"
"mutating-webhook/internal/config"
)
func forever() {
@ -23,7 +23,7 @@ func main() {
}()
// initialize application configuration
cfg := initialize.Init()
cfg := config.Init()
go httpServer(cfg)