()
| 16 | |
| 17 | |
| 18 | def versions_collection() -> AgnosticCollection: |
| 19 | from database.database import db |
| 20 | collection: AgnosticCollection = db().versions |
| 21 | return collection |
| 22 | |
| 23 | |
| 24 | async def get(account, container, filepath, access_allowed=Depends(check_access)) -> Metadata | None: |