10 lines
223 B
Python
10 lines
223 B
Python
from abc import ABC, abstractmethod
|
|
|
|
from core.app_assets.entities import AssetItem
|
|
|
|
|
|
class AssetPackager(ABC):
|
|
@abstractmethod
|
|
def package(self, assets: list[AssetItem]) -> bytes:
|
|
raise NotImplementedError
|