wot/dbchunkpool.py
Joscha 320dd16889 Add server
This is a first try at connecting multiple clients using a server.
The commit includes a lot of debugging messages.
I will hopefully clean up the server and some of the client code.
2017-04-13 18:10:37 +00:00

15 lines
211 B
Python

from chunks import ChunkPool
class ChunkDB():
"""
Load and save chunks to a SQLite db.
"""
pass
class DBChunkPool(ChunkPool):
"""
A ChunkPool that can load/save chunks from/to a database.
"""
pass