diff --git a/chunkdb.py b/chunkdb.py deleted file mode 100644 index 6c3b532..0000000 --- a/chunkdb.py +++ /dev/null @@ -1,6 +0,0 @@ -class ChunkDB(): - """ - Load and save chunks to a SQLite db. - """ - - pass diff --git a/client.py b/client.py index 5097bd4..d049d9f 100644 --- a/client.py +++ b/client.py @@ -1,6 +1,8 @@ import sys import threading +# import fron chunks, maps, clientchunkpool + class Client(): def __init__(self, address): self.address = address diff --git a/dbchunkpool.py b/dbchunkpool.py index 52aee53..056e3ed 100644 --- a/dbchunkpool.py +++ b/dbchunkpool.py @@ -1,5 +1,12 @@ 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. diff --git a/server.py b/server.py index e69de29..2c24cf4 100644 --- a/server.py +++ b/server.py @@ -0,0 +1 @@ +# import from chunks, dbchunkpool