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

13 lines
187 B
Go
Raw Normal View History

2024-08-30 02:44:35 +00:00
package domain
type TweetingStatus int8
func (t TweetingStatus) ToInt8() int8 {
return int8(t)
}
const (
TweetingStatusNotReviewedYet TweetingStatus = iota + 1
TweetingStatusPass
)