sdk/oapiSdk/lark_oapi/api/task/v1/version.py

11 lines
396 B
Python
Raw Normal View History

2025-08-19 10:20:23 +00:00
from .resource import *
class V1(object):
def __init__(self, config: Config) -> None:
self.task: Task = Task(config)
self.task_collaborator: TaskCollaborator = TaskCollaborator(config)
self.task_comment: TaskComment = TaskComment(config)
self.task_follower: TaskFollower = TaskFollower(config)
self.task_reminder: TaskReminder = TaskReminder(config)