mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03: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()
|