mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 05:39:42 +08:00
17 lines
279 B
Python
17 lines
279 B
Python
from enum import StrEnum
|
|
|
|
|
|
class CreatedByRole(StrEnum):
|
|
ACCOUNT = "account"
|
|
END_USER = "end_user"
|
|
|
|
|
|
class UserFrom(StrEnum):
|
|
ACCOUNT = "account"
|
|
END_USER = "end-user"
|
|
|
|
|
|
class WorkflowRunTriggeredFrom(StrEnum):
|
|
DEBUGGING = "debugging"
|
|
APP_RUN = "app-run"
|