A vibe coded tangled fork which supports pijul.
at 598f5cdb0f7cc53454d1bc8110e95f9b3a3fa713 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}