Monorepo for Tangled
tangled.org
1package models
2
3import (
4 "database/sql"
5 "time"
6
7 "github.com/bluesky-social/indigo/atproto/syntax"
8)
9
10type Collaborator struct {
11 // identifiers for the record
12 Id int64
13 Did syntax.DID
14 Rkey sql.NullString
15
16 // content
17 SubjectDid syntax.DID
18 RepoDid syntax.DID
19
20 // meta
21 Created time.Time
22}