Files
statusServer/models/clients.go
Adrian Zuercher e36d393749 first commit
2025-08-23 22:22:22 +02:00

8 lines
101 B
Go

package models
type Clients map[string]*Client
func NewClients() Clients {
return make(Clients)
}