Files
LangBot/pkg/core/entities.py
2025-08-17 14:30:22 +08:00

11 lines
196 B
Python

from __future__ import annotations
import enum
class LifecycleControlScope(enum.Enum):
APPLICATION = 'application'
PLATFORM = 'platform'
PLUGIN = 'plugin'
PROVIDER = 'provider'