mirror of
https://github.com/Gozargah/Marzban.git
synced 2026-05-17 08:35:56 +03:00
9 lines
200 B
Python
9 lines
200 B
Python
import grpc
|
|
|
|
|
|
class XRayBase(object):
|
|
def __init__(self, address, port):
|
|
self.address = address
|
|
self.port = port
|
|
self._channel = grpc.insecure_channel(f"{address}:{port}")
|