Skip to content

Commit

Permalink
Se expone toda la API
Browse files Browse the repository at this point in the history
  • Loading branch information
mouredev committed Feb 23, 2024
1 parent af00ed8 commit 38fc95e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion link_bio/link_bio/link_bio.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import link_bio.styles.styles as styles
from link_bio.pages.index import index
from link_bio.pages.courses import courses
from link_bio.api.api import repo, live
from link_bio.api.api import repo, live, featured, schedule

app = rx.App(
stylesheets=styles.STYLESHEETS,
Expand All @@ -24,3 +24,5 @@

app.api.add_api_route("/repo", repo)
app.api.add_api_route("/live/{user}", live)
app.api.add_api_route("/featured", featured)
app.api.add_api_route("/schedule", schedule)

0 comments on commit 38fc95e

Please sign in to comment.