Skip to content

Commit

Permalink
Update function name
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinbuss committed Nov 4, 2024
1 parent cc66665 commit cc66994
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/function/function_app.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import azure.functions as func
from blobfiletrigger.function import bp as bp_videoupload

# from blobfiletrigger.function import bp as bp_blobfiletrigger
from health.function import bp as bp_health

app = func.FunctionApp(http_auth_level=func.AuthLevel.FUNCTION)

# Register blueprints
app.register_functions(bp_health)
app.register_functions(bp_videoupload)
# app.register_functions(bp_blobfiletrigger)

0 comments on commit cc66994

Please sign in to comment.