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.
15 lines
211 B
Python
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
|