6 lines
124 B
Python
6 lines
124 B
Python
class Proxy:
|
|
def getUrl(self, local):
|
|
return 'http://127.0.0.1:9978'
|
|
|
|
def getPort(self):
|
|
return 9978 |