Files
dify/api/services/trial_app_usage.py
2026-08-20 13:13:42 +00:00

8 lines
191 B
Python

"""Port for recording recommended trial app usage."""
from typing import Protocol
class TrialAppUsageRecorder(Protocol):
def record(self, *, app_id: str, account_id: str) -> None: ...