19 lines
258 B
Python
19 lines
258 B
Python
class CommandLine:
|
|
def __init__(self, argv):
|
|
self.argv = argv
|
|
|
|
def migrate(self):
|
|
pass
|
|
|
|
def upgrade(self):
|
|
pass
|
|
|
|
def downgrade(self):
|
|
pass
|
|
|
|
def init_db(self):
|
|
pass
|
|
|
|
def init(self):
|
|
pass
|