rename database to postgressql

This commit is contained in:
gitGnome
2026-04-13 08:06:41 +02:00
parent 554b7c338a
commit 6435206683
6 changed files with 29 additions and 30 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ func GetUserById(ctx context.Context, userId uuid.UUID) (*User, error) {
user, err := CacheGetUserById(userId)
if err != nil {
user = &User{Id: userId}
err = DbGetWholeUser(ctx, user)
err = PgGetWholeUser(ctx, user)
if err != nil {
return nil, err
}