All checks were successful
Build and Release / release (push) Successful in 1m27s
14 lines
268 B
Go
14 lines
268 B
Go
package constants
|
|
|
|
type TaskType string
|
|
|
|
const (
|
|
TaskTypeSendEmailOTP TaskType = "SEND_EMAIL_OTP"
|
|
TaskTypeDeleteMedia TaskType = "DELETE_MEDIA"
|
|
TaskTypeBulkDeleteMedia TaskType = "BULK_DELETE_MEDIA"
|
|
)
|
|
|
|
func (t TaskType) String() string {
|
|
return string(t)
|
|
}
|