Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type List ¶
type List struct {
Name string `json:"name" yaml:"name"`
DID string `json:"did" yaml:"did"`
Rkey string `json:"rkey" yaml:"rkey"`
Entries *ListEntries `json:"entries" yaml:"entries"`
NoAutoRemovals bool `json:"noAutoRemovals" yaml:"noAutoRemovals"`
}
type ListEntries ¶
type ListEntries struct {
Union []ListEntries `json:"union" yaml:"union"`
Intersection []ListEntries `json:"intersection" yaml:"intersection"`
Difference *SetDifference `json:"difference" yaml:"difference"`
List *MuteList `json:"list" yaml:"list"`
Followers *string `json:"followers" yaml:"followers"`
Follows *string `json:"follows" yaml:"follows"`
BlockedBy *string `json:"blockedBy" yaml:"blockedBy"`
DID *string `json:"did" yaml:"did"`
File *string `json:"file" yaml:"file"`
ExpandFollowers *ListEntries `json:"expandFollowers" yaml:"expandFollowers"`
}
type SetDifference ¶
type SetDifference struct {
Left *ListEntries `json:"left" yaml:"left"`
Right *ListEntries `json:"right" yaml:"right"`
}
Click to show internal directories.
Click to hide internal directories.