You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
601 B

package constants
const (
TrackStatusPending = "pending"
TrackStatusProcessing = "processing"
TrackStatusFailed = "failed"
TrackStatusDownloading = "downloading"
TrackStatusDownladed = "downloaded"
TrakcConverting = "converting"
TrakcConverted = "converted"
TrakcConvertFailed = "failed"
TrakcConvertQueued = "queued"
NgrokStatusRunning = "running"
NgrokStatusError = "error"
NgrokStatusTimeout = "timeout"
NgrokStatusStopped = "killed"
NotificationTypeSuccess = "success"
NotificationTypeWarning = "warning"
NotificationTypeError = "error"
)