This repository has no description
0

Configure Feed

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

core / appview / models / language.go
229 B 12 lines
1package models 2 3import "github.com/bluesky-social/indigo/atproto/syntax" 4 5type RepoLanguage struct { 6 Id int64 7 RepoDid syntax.DID 8 Ref string 9 IsDefaultRef bool 10 Language string 11 Bytes int64 12}