go-lemmy/types/lib.1.gen.go

37 lines
799 B
Go

package types
type SortType string
const (
SortTypeActive = "Active"
SortTypeHot = "Hot"
SortTypeNew = "New"
SortTypeTopDay = "TopDay"
SortTypeTopWeek = "TopWeek"
SortTypeTopMonth = "TopMonth"
SortTypeTopYear = "TopYear"
SortTypeTopAll = "TopAll"
SortTypeMostComments = "MostComments"
SortTypeNewComments = "NewComments"
)
type ListingType string
const (
ListingTypeAll = "All"
ListingTypeLocal = "Local"
ListingTypeSubscribed = "Subscribed"
ListingTypeCommunity = "Community"
)
type SearchType string
const (
SearchTypeAll = "All"
SearchTypeComments = "Comments"
SearchTypePosts = "Posts"
SearchTypeCommunities = "Communities"
SearchTypeUsers = "Users"
SearchTypeUrl = "Url"
)