A vibe coded tangled fork which supports pijul.
at 7a94ba0ccf56cd4266688d3170aa6069530cb48e 20 lines 267 B view raw
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 Branch string 16 Dir string 17 IsIndex bool 18 Created time.Time 19 Updated time.Time 20}