A vibe coded tangled fork which supports pijul.
1package models
2
3import "time"
4
5type DomainClaim struct {
6 ID int64
7 Did string
8 Domain string
9 Deleted *time.Time
10}
11
12type RepoSite struct {
13 ID int64
14 RepoAt string
15 RepoName string // populated when joined with repos table
16 Branch string
17 Dir string
18 IsIndex bool
19 Created time.Time
20 Updated time.Time
21}