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