app-cloudep-tweeting-service/internal/domain/const.go

18 lines
201 B
Go
Raw Normal View History

package domain
type AdType int32
func (a AdType) ToInt32() int32 {
return int32(a)
}
const (
AdTypeAll AdType = iota
AdTypeOnlyAd
AdTypeOnlyNotAd
)
2024-09-01 13:49:28 +00:00
const (
LastOfTimelineFlag = "NoMoreData"
)