Skip to content

Commit

Permalink
📦 docs: 资源商店新增发布资源功能
Browse files Browse the repository at this point in the history
  • Loading branch information
snowykami committed Sep 17, 2024
1 parent cb33572 commit 2d10088
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions liteyuki_flow/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@

# 审资源
if issue.title.strip().startswith(RESOURCE_PREFIX):
from resource_handler import handle_resource # type: ignore
from liteyuki_flow.resource_handler import handle_resource # type: ignore
handle_resource(github=g, issue=issue, repo=repo, act_type=ACT_TYPE)

# 审插件
elif issue.title.strip().startswith(PLUGIN_PREFIX):
from plugin_handler import handle_plugin # type: ignore
from liteyuki_flow.plugin_handler import handle_plugin # type: ignore
pass

else:
print("No handler found for the issue.")

elif args.parse:
print("Starting the markdown parser module...")
from .markdown_parser import MarkdownParser # type: ignore
from liteyuki_flow.markdown_parser import MarkdownParser # type: ignore

if args.input is None:
raise ValueError("Input file is required.")
Expand Down

0 comments on commit 2d10088

Please sign in to comment.