mirror of
https://github.com/dreamstarsky/runbin.git
synced 2026-05-15 14:23:07 +00:00
10 lines
245 B
Go
10 lines
245 B
Go
package model
|
|
|
|
type SubmitRequest struct {
|
|
Code string `json:"code" binding:"required"`
|
|
Language string `json:"language" binding:"required"`
|
|
Run bool `json:"run"`
|
|
Stdin string `json:"stdin"`
|
|
BackEnd string `json:"backend"`
|
|
}
|