mirror of
https://github.com/exo-explore/exo.git
synced 2026-03-05 06:37:03 -05:00
11 lines
192 B
Python
11 lines
192 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class Server(ABC):
|
|
@abstractmethod
|
|
async def start(self) -> None:
|
|
pass
|
|
|
|
@abstractmethod
|
|
async def stop(self) -> None:
|
|
pass
|