Rewrite the use of unwrap() to use Result<>

This commit is contained in:
2025-11-30 18:08:01 +03:00
parent 264a45acf9
commit 499987a465
9 changed files with 48 additions and 40 deletions

View File

@ -1,5 +1,5 @@
services:
database:
postgres:
image: docker.io/postgres:17
environment:
POSTGRES_DB: ${POSTGRES_DB}
@ -7,3 +7,7 @@ services:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- ${POSTGRES_PORT}:5432
adminer:
image: docker.io/adminer
ports:
- 8080:8080