mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
15 lines
256 B
Go
15 lines
256 B
Go
package file
|
|
|
|
// SourceCode defines source code with its language
|
|
type SourceCode struct {
|
|
Language string
|
|
Code File
|
|
ExtraFiles []File
|
|
}
|
|
|
|
// CompiledExec defines compiled executable
|
|
type CompiledExec struct {
|
|
Language string
|
|
Exec []File
|
|
}
|