mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
60 lines
1.2 KiB
Python
60 lines
1.2 KiB
Python
|
from abc import ABC, abstractmethod
|
||
|
|
||
|
from invokeai.app.services.board_records.board_records_common import BoardChanges
|
||
|
from invokeai.app.services.shared.pagination import OffsetPaginatedResults
|
||
|
|
||
|
from .boards_common import BoardDTO
|
||
|
|
||
|
|
||
|
class BoardServiceABC(ABC):
|
||
|
"""High-level service for board management."""
|
||
|
|
||
|
@abstractmethod
|
||
|
def create(
|
||
|
self,
|
||
|
board_name: str,
|
||
|
) -> BoardDTO:
|
||
|
"""Creates a board."""
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def get_dto(
|
||
|
self,
|
||
|
board_id: str,
|
||
|
) -> BoardDTO:
|
||
|
"""Gets a board."""
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def update(
|
||
|
self,
|
||
|
board_id: str,
|
||
|
changes: BoardChanges,
|
||
|
) -> BoardDTO:
|
||
|
"""Updates a board."""
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def delete(
|
||
|
self,
|
||
|
board_id: str,
|
||
|
) -> None:
|
||
|
"""Deletes a board."""
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def get_many(
|
||
|
self,
|
||
|
offset: int = 0,
|
||
|
limit: int = 10,
|
||
|
) -> OffsetPaginatedResults[BoardDTO]:
|
||
|
"""Gets many boards."""
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def get_all(
|
||
|
self,
|
||
|
) -> list[BoardDTO]:
|
||
|
"""Gets all boards."""
|
||
|
pass
|