mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
7 lines
110 B
Python
7 lines
110 B
Python
from enum import Enum
|
|
|
|
|
|
class SubscriptionAccessStatus(Enum):
|
|
ACTIVE = 'ACTIVE'
|
|
DISABLED = 'DISABLED'
|