9 lines
137 B
Python
9 lines
137 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
|
|
from bot import Bot
|
|
|
|
if __name__ == '__main__':
|
|
bot = Bot.from_json(*sys.argv[1:])
|
|
bot.run()
|