mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-02-04 08:55:37 -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
|
|
|