home · contact · privacy
Client: Restructure into modules below client/.
[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()