mirror of
https://github.com/langgenius/dify.git
synced 2026-02-13 07:01:23 -05:00
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
|