feat(postgres): UserRepository

This commit is contained in:
2026-05-14 03:32:56 +02:00
parent 62ee73e302
commit fe9655ee96
13 changed files with 271 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
pub struct PgNotificationRepository { _pool: sqlx::PgPool }
impl PgNotificationRepository { pub fn new(pool: sqlx::PgPool) -> Self { Self { _pool: pool } } }