Initial commit

This commit is contained in:
elisaveta9
2025-12-23 16:38:32 +03:00
commit b8f8e5607c
54 changed files with 2525 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package registry
import (
"relay/device"
"sync"
)
type Registry struct {
Mu sync.Mutex
Domains map[string]*device.Device
}
var Global = &Registry{
Domains: make(map[string]*device.Device),
}