-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00753a4
commit d39cebf
Showing
3 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
"""Register all routes under the /api prefixes. The route /heartbeat is not included.""" | ||
from flask import Blueprint | ||
|
||
from nestor_api.api.api_routes.v1 import create_api_v1 | ||
|
||
|
||
def get_apis() -> list: | ||
"""Return the list of apis to register.""" | ||
|
||
return [ | ||
create_api_v1(), | ||
] |
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