complement/b/alice.go
kegsay 765746a8f8
Move /internal/b to /b (#659)
The API is unchanged and is suitable to be made public.
2023-10-04 16:15:25 +01:00

17 lines
270 B
Go

package b
// BlueprintAlice is a single user homeserver
var BlueprintAlice = MustValidate(Blueprint{
Name: "alice",
Homeservers: []Homeserver{
{
Name: "hs1",
Users: []User{
{
Localpart: "@alice",
DisplayName: "Alice",
},
},
},
},
})