mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
10 lines
168 B
Go
10 lines
168 B
Go
package types
|
|
|
|
// run_task / problem types
|
|
const (
|
|
Compile = "compile"
|
|
Standard = "standard"
|
|
Interactive = "interactive"
|
|
AnswerSubmit = "answer_submit"
|
|
)
|