first commit

This commit is contained in:
Adrian Zuercher
2025-08-23 22:22:22 +02:00
commit e36d393749
14 changed files with 1555 additions and 0 deletions

7
models/clients.go Normal file
View File

@@ -0,0 +1,7 @@
package models
type Clients map[string]*Client
func NewClients() Clients {
return make(Clients)
}