From e86fbc7275c036cefe75d7c46b0f11898bde1c6c Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Sat, 24 Sep 2022 22:21:38 +0200 Subject: test regular docker runner operation --- planetwars-matchrunner/bots/echo_bot.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 planetwars-matchrunner/bots/echo_bot.py (limited to 'planetwars-matchrunner/bots/echo_bot.py') diff --git a/planetwars-matchrunner/bots/echo_bot.py b/planetwars-matchrunner/bots/echo_bot.py new file mode 100644 index 0000000..328d914 --- /dev/null +++ b/planetwars-matchrunner/bots/echo_bot.py @@ -0,0 +1,5 @@ +import sys + +for line in sys.stdin: + sys.stdout.write(line) + sys.stdout.flush() \ No newline at end of file -- cgit v1.2.3