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

18 lines
276 B
Go
Raw Normal View History

2024-08-30 02:44:35 +00:00
package domain
type ErrorCode uint32
func (e ErrorCode) ToUint32() uint32 {
return uint32(e)
}
// Error Code 統一這邊改
const (
_ = iota
PostMongoErrorCode ErrorCode = iota
CreatePostError
DelPostError
UpdatePostError
ListPostError
)