This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / models / sites.go
267 B 20 lines
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}