fork
Configure Feed
Select the types of activity you want to include in your feed.
Monorepo for Tangled
tangled.org
fork
Configure Feed
Select the types of activity you want to include in your feed.
1package models
2
3import (
4 "time"
5
6 "github.com/bluesky-social/indigo/atproto/syntax"
7)
8
9type Star struct {
10 Did string
11 RepoAt syntax.ATURI
12 Created time.Time
13 Rkey string
14}
15
16// RepoStar is used for reverse mapping to repos
17type RepoStar struct {
18 Star
19 Repo *Repo
20}
21
22// StringStar is used for reverse mapping to strings
23type StringStar struct {
24 Star
25 String *String
26}