sprint/CheckerExecutor/testers/GoTester.py
2022-02-16 17:40:46 +03:00

9 lines
172 B
Python

from .BaseTester import BaseTester
class GoTester(BaseTester):
working_directory = "../app"
def build_command(self):
return "go build -o executable.exe"