10 lines
164 B
Python
10 lines
164 B
Python
|
import rlcompleter2
|
||
|
rlcompleter2.setup()
|
||
|
|
||
|
import register, sys
|
||
|
try:
|
||
|
hostport = sys.argv[1]
|
||
|
except:
|
||
|
hostport = ':8888'
|
||
|
gw = register.ServerGateway(hostport)
|