mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-02-04 17:05:32 -05:00
11 lines
251 B
Python
11 lines
251 B
Python
|
from abc import ABC, abstractmethod
|
||
|
from .state import VeilidState
|
||
|
|
||
|
class VeilidAPI(ABC):
|
||
|
@abstractmethod
|
||
|
def control(self, args: list[str]) -> str:
|
||
|
pass
|
||
|
@abstractmethod
|
||
|
def get_state(self) -> VeilidState:
|
||
|
pass
|
||
|
|