dify/api/services/trial_app_usage.py

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: ...