1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-03-15 02:47:43 +00:00
ctrl/central_auth.go

17 lines
276 B
Go
Raw Normal View History

package steward
type signatureBase32 string
type argsString string
type centralAuth struct {
schema map[Node]map[argsString]signatureBase32
}
func newCentralAuth() *centralAuth {
a := centralAuth{
schema: make(map[Node]map[argsString]signatureBase32),
}
return &a
}