mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00: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'
|