home · contact · privacy
Client: Restructure into modules below client/.
[plomrogue] / client / io.py
diff --git a/client/io.py b/client/io.py
new file mode 100644 (file)
index 0000000..7927f50
--- /dev/null
@@ -0,0 +1,5 @@
+from client.config.io import io
+
+def send(string):
+    io["file_out"].write(string + "\n")
+    io["file_out"].flush()