mirror of
https://github.com/github/codeql.git
synced 2026-07-13 15:28:16 +02:00
6 lines
208 B
Python
6 lines
208 B
Python
from starlette.responses import FileResponse
|
|
from baize.asgi import FileResponse as baizeFileResponse
|
|
|
|
baizeFileResponse("file") # $ getAPathArgument="file"
|
|
FileResponse("file") # $ getAPathArgument="file"
|