feat: add GET /api/v2/users (#1028)

This commit is contained in:
Bruno Quaresma
2022-04-18 12:19:47 -05:00
committed by GitHub
parent af672803a2
commit 1df750bf1a
8 changed files with 102 additions and 0 deletions

View File

@ -51,3 +51,9 @@ SET
updated_at = $5
WHERE
id = $1 RETURNING *;
-- name: GetUsers :many
SELECT
*
FROM
users;