home · contact · privacy
Change path of server run data directory from server/ to server_run/.
[plomrogue] / client / io.py
1 from client.config.io import io
2
3 def send(string):
4     io["file_out"].write(string + "\n")
5     io["file_out"].flush()