You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@app.get("/greeting/theotherone")defgreeting_one() ->str:
greeting=f"Called the other greeting"DBOS.logger.info(greeting)
returngreeting@app.get("/greeting/{name}")defgreeting_one(name: str) ->str:
greeting=f"Called greeting with {name}"DBOS.logger.info(greeting)
returngreeting
The first method declared in the file will get precedence.
The text was updated successfully, but these errors were encountered:
Analogous to dbos-inc/dbos-transact-ts#666 but more consistent.
If we do something like this:
The first method declared in the file will get precedence.
The text was updated successfully, but these errors were encountered: