15 lines
215 B
Python
15 lines
215 B
Python
from .chunks.py 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
|