initial setup, messing around with sqlc

This commit is contained in:
zardzul
2026-03-10 20:22:07 +01:00
parent 9f9054e53b
commit 5fa23b0d1c
11 changed files with 332 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
-- users.sql
-- name: GetUsernameByID :one
SELECT user_name FROM users WHERE id = $1;
-- name: checkUserExistsByEmail :one
SELECT id FROM users WHERE user_mail = $1;