diff options
| author | Fuwn <[email protected]> | 2023-07-28 22:32:10 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-07-28 22:32:10 -0700 |
| commit | 0a2fcddffc5b4b32ed772e02dd69afbe9734b0b1 (patch) | |
| tree | 6a8621b20b75acf9d9b5971dd10ea3e9d13ea81a /src/due/__init__.py | |
| parent | refactor(manga): move rerequests to function (diff) | |
| download | old.due.moe-0a2fcddffc5b4b32ed772e02dd69afbe9734b0b1.tar.xz old.due.moe-0a2fcddffc5b4b32ed772e02dd69afbe9734b0b1.zip | |
feat(anilist): allow media increment
Diffstat (limited to 'src/due/__init__.py')
| -rw-r--r-- | src/due/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/due/__init__.py b/src/due/__init__.py index 863a817..3cbe721 100644 --- a/src/due/__init__.py +++ b/src/due/__init__.py @@ -1,5 +1,5 @@ from flask import Flask -from due.routes import auth, oauth, index +from due.routes import auth, oauth, index, anilist from due.html.utilities import page from flask_cors import CORS from dotenv import load_dotenv @@ -18,6 +18,7 @@ log.setLevel(logging.ERROR) app.register_blueprint(auth.bp, url_prefix="/auth") app.register_blueprint(oauth.bp, url_prefix="/oauth") app.register_blueprint(index.bp) +app.register_blueprint(anilist.bp, url_prefix="/anilist") app.secret_key = os.getenv("SECRET_KEY") |