mirror of
https://github.com/langgenius/dify.git
synced 2025-12-04 06:47:05 +00:00
16 lines
336 B
Python
16 lines
336 B
Python
|
|
from enum import StrEnum, auto
|
||
|
|
|
||
|
|
|
||
|
|
class CloudPlan(StrEnum):
|
||
|
|
"""
|
||
|
|
Enum representing user plan types in the cloud platform.
|
||
|
|
|
||
|
|
SANDBOX: Free/default plan with limited features
|
||
|
|
PROFESSIONAL: Professional paid plan
|
||
|
|
TEAM: Team collaboration paid plan
|
||
|
|
"""
|
||
|
|
|
||
|
|
SANDBOX = auto()
|
||
|
|
PROFESSIONAL = auto()
|
||
|
|
TEAM = auto()
|