17 lines
283 B
Python
Executable File
17 lines
283 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Initializes the bot.
|
|
"""
|
|
import os
|
|
|
|
from twisted.internet import reactor
|
|
|
|
import config
|
|
from bot import FulviaFactory
|
|
|
|
if __name__ == "__main__":
|
|
server = config.server
|
|
port = config.port
|
|
reactor.connectTCP(server, port, FulviaFactory())
|
|
reactor.run()
|