| "github.com/kelseyhightower/envconfig" |
| Port int `default:"4242"` |
| Listen string `default:"0.0.0.0"` |
| Network string `default:"10.0.0.0/24"` |
| err := envconfig.Process("ALLOCATE", &config) |
| log.Fatalf("[error] Unable to parse configuration options : %s", err) |
| log.Printf(`Configuration: |
| SKip: %d`, config.Listen, config.Port, config.Network, config.Skip) |
| context.storage = &MemoryStorage{} |
| context.storage.Init(config.Network, config.Skip) |
| router := mux.NewRouter() |
| router.HandleFunc("/allocations/{mac}", context.ReleaseAllocationHandler).Methods("DELETE") |
| router.HandleFunc("/allocations/{mac}", context.AllocationHandler).Methods("GET") |
| router.HandleFunc("/allocations/", context.ListAllocationsHandler).Methods("GET") |
| router.HandleFunc("/addresses/{ip}", context.FreeAddressHandler).Methods("DELETE") |
| http.ListenAndServe(fmt.Sprintf("%s:%d", config.Listen, config.Port), nil) |