mirror of
https://github.com/DeclanHoare/shiftgears.git
synced 2025-01-22 18:02:16 +00:00
12 lines
259 B
Python
12 lines
259 B
Python
|
#!/usr/bin/env python3
|
||
|
from twisted.internet.endpoints import TCP4ServerEndpoint
|
||
|
from twisted.internet import reactor
|
||
|
|
||
|
from mud import MudConnectionFactory
|
||
|
|
||
|
endpoint = TCP4ServerEndpoint(reactor, 13370)
|
||
|
endpoint.listen(MudConnectionFactory())
|
||
|
reactor.run()
|
||
|
|
||
|
|