17 lines
292 B
Python
17 lines
292 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.
|
|
"""
|
|
|
|
#def __init__(self, filename):
|
|
#super().init()
|
|
#self._chunkdb = ChunkDB(filename)
|