Skip to content

Commit

Permalink
调整import次序
Browse files Browse the repository at this point in the history
  • Loading branch information
HisAtri committed Dec 9, 2023
1 parent 48f29bb commit 998128b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
import argparse
import hashlib
import logging
import os
from urllib.parse import unquote_plus

import shutil
import requests
from flask import Flask, request, abort, redirect, send_from_directory, Response, jsonify, render_template_string, \
make_response
from flask_caching import Cache
import os
import hashlib
from urllib.parse import unquote_plus
import argparse
from waitress import serve
import logging
import concurrent.futures

from mod import api, lrc, tags
from mod.auth import webui, cookie


# 创建一个解析器
parser = argparse.ArgumentParser(description="启动LRCAPI服务器")
# 添加一个 `--port` 参数,默认值28883
Expand Down
Empty file added mod/auth/__init__.py
Empty file.

0 comments on commit 998128b

Please sign in to comment.