mirror of
https://github.com/StijnBTC/Ringtools.git
synced 2024-11-19 00:50:03 +01:00
19 lines
343 B
Python
19 lines
343 B
Python
from abc import ABC, abstractmethod
|
|
class LNClient(ABC):
|
|
|
|
@abstractmethod
|
|
def get_edge(self, channel_id):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_node_channels(self, pub_key):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_node_alias(self, pub_key):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_node(self, pub_key):
|
|
pass
|