Live video on the AT Protocol
1package v0
2
3import "stream.place/streamplace/pkg/schema"
4
5var Name = "Streamplace"
6var Version = "0.0.1"
7
8type V0Schema struct {
9 Identity Identity
10 StreamKey StreamKey
11}
12type Identity struct {
13 Handle string `json:"handle"`
14 DID string `json:"did"`
15}
16
17type StreamKey struct {
18 Authorized string `json:"authorized"`
19}
20
21func MakeV0Schema() (schema.Schema, error) {
22 return schema.MakeSchema(Name, Version, V0Schema{})
23}