Update repository URL to Gitea and sync structural changes

This commit is contained in:
2026-01-05 15:57:24 +09:00
parent 51ef1ee459
commit 1167e60c36
12 changed files with 318 additions and 376 deletions

10
main.py
View File

@@ -8,15 +8,11 @@ from datetime import datetime
from flask import render_template, jsonify
from framework import db, path_app_root, path_data, socketio
from framework.common.plugin import LogicModuleBase, default_route_socketio
from .plugin import Plugin
from .my_youtube_dl import MyYoutubeDL, Status
logger = Plugin.logger
package_name = Plugin.package_name
ModelSetting = Plugin.ModelSetting
logger = P.logger
package_name = P.package_name
ModelSetting = P.ModelSetting
class LogicMain(LogicModuleBase):