Add EntityStore interface

This commit is contained in:
Jan-Eric Hellenberg
2021-05-05 11:35:19 +02:00
committed by Jan-Eric Hellenberg
parent dba7160a41
commit abb1ce1bf8
10 changed files with 172 additions and 98 deletions

View File

@@ -0,0 +1,9 @@
package environment
import "gitlab.hpi.de/codeocean/codemoon/poseidon/runner"
const RunnerId = "s0m3-r4nd0m-1d"
func CreateTestRunner() runner.Runner {
return runner.NewExerciseRunner(RunnerId)
}