1package models 2 3import ( 4 "github.com/bluesky-social/indigo/atproto/syntax" 5) 6 7type RepoLanguage struct { 8 Id int64 9 RepoAt syntax.ATURI 10 RepoDid string 11 Ref string 12 IsDefaultRef bool 13 Language string 14 Bytes int64 15}