2018-04-03 10:56:07 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-07-21 12:36:02 +00:00
|
|
|
from commands.cli import cli
|
2018-04-03 10:56:07 +00:00
|
|
|
from config import Config
|
|
|
|
|
2018-07-21 15:29:34 +00:00
|
|
|
from commands import login, projects, stories # noqa
|
|
|
|
|
2018-04-03 10:56:07 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
Config.read()
|
2018-07-21 12:36:02 +00:00
|
|
|
cli()
|