first demo

This commit is contained in:
xkm
2025-04-14 22:57:36 +08:00
parent 0c76d2169a
commit a960184433
22 changed files with 1047 additions and 218 deletions

View File

@@ -0,0 +1,9 @@
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"`
}