11 lines
204 B
Python
11 lines
204 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
class ServerSide:
|
|
|
|
def __init__(self, local_port, remote_port):
|
|
self._local_port = local_port
|
|
self._remote_port = remote_port
|
|
|
|
def run(self):
|
|
pass
|