-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #275 from meower-media-co/v0-refactor
Chore: Refactor v0 into v0 folder.
- Loading branch information
Showing
10 changed files
with
35 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from quart import Blueprint | ||
|
||
from .search import search_bp | ||
from .chats import chats_bp | ||
from .inbox import inbox_bp | ||
from .posts import posts_bp | ||
from .users import users_bp | ||
from .auth import auth_bp | ||
from .home import home_bp | ||
from .me import me_bp | ||
|
||
v0 = Blueprint("v0", __name__) | ||
|
||
v0.register_blueprint(auth_bp) | ||
v0.register_blueprint(me_bp) | ||
v0.register_blueprint(home_bp) | ||
v0.register_blueprint(inbox_bp) | ||
v0.register_blueprint(posts_bp) | ||
v0.register_blueprint(users_bp) | ||
v0.register_blueprint(chats_bp) | ||
v0.register_blueprint(search_bp) | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.