Files
LangBot/pkg/core/entities.py
2025-06-30 21:47:40 +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'