first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
"""
|
||||
Project JSONL Handler
|
||||
"""
|
||||
from ...datasource import BaseJsonlHandler, JsonlDataSource
|
||||
from .sync_node import ProjectSyncNode
|
||||
from schemas.project.project_base import ProjectResponseBase
|
||||
|
||||
|
||||
class ProjectJsonlHandler(BaseJsonlHandler):
|
||||
"""项目 JSONL Handler"""
|
||||
def __init__(self, datasource: JsonlDataSource):
|
||||
super().__init__(datasource, "project", ProjectSyncNode, ProjectResponseBase)
|
||||
Reference in New Issue
Block a user