mirror of
https://github.com/langgenius/dify.git
synced 2025-11-21 23:43:08 +00:00
6 lines
90 B
Python
6 lines
90 B
Python
|
|
from enum import StrEnum
|
||
|
|
|
||
|
|
|
||
|
|
class RemoteSettingsSourceName(StrEnum):
|
||
|
|
APOLLO = "apollo"
|