mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-22 10:32:10 +00:00
10 lines
172 B
Python
10 lines
172 B
Python
|
|
from twisted.internet import protocol, reactor, endpoints
|
||
|
|
|
||
|
|
|
||
|
|
class F(protocol.Factory):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
endpoints.serverFromString(reactor, "tcp:1234").listen(F())
|
||
|
|
reactor.run()
|