Monorepo for Tangled
tangled.org
1package models
2
3import (
4 "time"
5
6 "github.com/bluesky-social/indigo/atproto/syntax"
7)
8
9type DomainClaim struct {
10 ID int64
11 Did string
12 Domain string
13 Deleted *time.Time
14}
15
16type RepoSite struct {
17 ID int64
18 RepoDid syntax.DID
19 RepoRkey string // populated when joined with repos table
20 Branch string
21 Dir string
22 IsIndex bool
23 Created time.Time
24 Updated time.Time
25}