10 lines
161 B
Python
10 lines
161 B
Python
#!/bin/python3
|
|
|
|
from DiscordBot import Bot, DiscordConf
|
|
|
|
|
|
if __name__ == '__main__':
|
|
disconf = DiscordConf()
|
|
client = Bot(conf=disconf)
|
|
client.run()
|