enbas/internal/executor/consts.go

30 lines
1 KiB
Go
Raw Normal View History

2024-08-18 09:57:48 +01:00
package executor
const (
flagFrom string = "from"
flagTo string = "to"
flagType string = "type"
resourceAccount string = "account"
resourceBlocked string = "blocked"
resourceBookmarks string = "bookmarks"
resourceBoost string = "boost"
resourceFollowers string = "followers"
resourceFollowing string = "following"
resourceFollowRequest string = "follow-request"
resourceInstance string = "instance"
resourceLike string = "like"
resourceLiked string = "liked"
resourceList string = "list"
resourceMedia string = "media"
resourceMediaAttachment string = "media-attachment"
resourceMutedAccounts string = "muted-accounts"
resourceNote string = "note"
resourcePoll string = "poll"
resourceStatus string = "status"
resourceStar string = "star"
resourceStarred string = "starred"
resourceTimeline string = "timeline"
resourceVote string = "vote"
)