mirror of
https://github.com/dreamstarsky/runbin.git
synced 2026-05-15 14:23:07 +00:00
15 lines
488 B
Go
15 lines
488 B
Go
package model
|
|
|
|
type PasteStatus string
|
|
|
|
const (
|
|
StatusPending PasteStatus = "pending"
|
|
StatusRunning PasteStatus = "running"
|
|
StatusCompileError PasteStatus = "compile error"
|
|
StatusRuntimeError PasteStatus = "runtime error"
|
|
StatusTimeLimitExceed PasteStatus = "time limit exceeded"
|
|
StatusMemoryLimitExceed PasteStatus = "memory limit exceeded"
|
|
StatusUnknownError PasteStatus = "unknown error"
|
|
StatusCompleted PasteStatus = "completed"
|
|
)
|