mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
11 lines
196 B
Python
11 lines
196 B
Python
from __future__ import annotations
|
|
|
|
import enum
|
|
|
|
|
|
class LifecycleControlScope(enum.Enum):
|
|
APPLICATION = 'application'
|
|
PLATFORM = 'platform'
|
|
PLUGIN = 'plugin'
|
|
PROVIDER = 'provider'
|