Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-09-11 23:40:19 +00:00
parent 012b02cc9c
commit 4f534f7cf1
8 changed files with 458 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
package dns
//func (mgr *Manager) AddHost(_ context.Context, zone string, id int, active bool, addrs ...netip.Addr) error {
// if zone == "" || id <= 0 {
// return fs.ErrInvalid
// }
//
// z, ok := mgr.zones[zone]
// if !ok {
// z = &Zone{
// Name: zone,
// Machines: make(map[int]*Machine),
// }
//
// mgr.zones[zone] = z
// }
//
// z.Machines[id] = &Machine{
// ID: id,
// Active: active,
// Addrs: addrs,
// }
//
// return nil
//}
//