12 lines
162 B
Python
12 lines
162 B
Python
|
import CustomConfig
|
||
|
|
||
|
class EmptyDatabase:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def CreateDatabase():
|
||
|
return EmptyDatabase()
|
||
|
|
||
|
def CloseDatabase(db):
|
||
|
pass
|