mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-07-02 18:46:52 -04:00
11 lines
No EOL
251 B
Python
11 lines
No EOL
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
|
|
|