mirror of
https://github.com/criyle/go-judge.git
synced 2025-09-26 22:39:12 +08:00
13 lines
121 B
Go
13 lines
121 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/criyle/go-sandbox/container"
|
|
)
|
|
|
|
func main() {
|
|
container.Init()
|
|
os.Exit(2)
|
|
}
|