This commit is contained in:
wqy
2022-09-03 11:08:05 +08:00
parent c3dcf70a04
commit 8fe2eebe03
3 changed files with 33 additions and 0 deletions

View File

@@ -104,6 +104,18 @@ def is_curve(name: str, curve_id: str) -> bool:
def is_pattern(name: str, pattern_id: str) -> bool:
return api.is_pattern(name, pattern_id)
def get_nodes(name: str) -> list[str]:
return api.get_nodes(name)
def get_links(name: str) -> list[str]:
return api.get_links(name)
def get_curves(name: str) -> list[str]:
return api.get_curves(name)
def get_patterns(name: str) -> list[str]:
return api.get_patterns(name)
############################################################
# title 1.[TITLE]