Skip to content

Commit

Permalink
DO NOT MERGE: add no-op route
Browse files Browse the repository at this point in the history
  • Loading branch information
dhirving committed Nov 20, 2024
1 parent 139cb40 commit 1a7921f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,3 +286,8 @@ def query_dataset_types(
return QueryDatasetTypesResponseModel(
dataset_types=[dt.to_simple() for dt in dataset_types], missing=missing
)


@external_router.get("/something")
async def something() -> str:
return "hi"

Check warning on line 293 in python/lsst/daf/butler/remote_butler/server/handlers/_external.py

View check run for this annotation

Codecov / codecov/patch

python/lsst/daf/butler/remote_butler/server/handlers/_external.py#L293

Added line #L293 was not covered by tests

0 comments on commit 1a7921f

Please sign in to comment.