[UPD] Added api to create Library

This commit is contained in:
2026-02-15 10:36:37 +01:00
parent bb8324ad1d
commit c468f51672
17 changed files with 142 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
__version__ = "0.2.0.dev"
from flask import Flask
app = Flask(__name__)
from .routes.api import api
app = Flask(__name__)
app.register_blueprint(api)