rename send_file.py -> stream.py

This commit is contained in:
cwilvx
2024-05-10 12:08:57 +03:00
parent 999b802f7d
commit 1e857c1e89
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -23,7 +23,6 @@ from app.api import (
imgserver,
playlist,
search,
send_file,
settings,
lyrics,
plugins,
@@ -31,6 +30,7 @@ from app.api import (
home,
getall,
auth,
stream,
)
# TODO: Move this description to a separate file
@@ -96,7 +96,7 @@ def create_api():
with app.app_context():
app.register_api(album.api)
app.register_api(artist.api)
app.register_api(send_file.api)
app.register_api(stream.api)
app.register_api(search.api)
app.register_api(folder.api)
app.register_api(playlist.api)