mirror of
https://github.com/langgenius/dify.git
synced 2026-08-24 12:32:54 -04:00
8 lines
191 B
Python
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: ...
|