[New] Substack loader (#949)

This commit is contained in:
Sidharth Mohanty
2023-11-15 11:22:15 +05:30
committed by GitHub
parent 82fd595306
commit 122313d8a5
6 changed files with 130 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ class IndirectDataType(Enum):
MYSQL = "mysql"
SLACK = "slack"
DISCOURSE = "discourse"
SUBSTACK = "substack"
class SpecialDataType(Enum):
@@ -65,3 +66,4 @@ class DataType(Enum):
MYSQL = IndirectDataType.MYSQL.value
SLACK = IndirectDataType.SLACK.value
DISCOURSE = IndirectDataType.DISCOURSE.value
SUBSTACK = IndirectDataType.SUBSTACK.value