moved the project to this repository

This commit is contained in:
Timmelmann
2026-08-08 14:38:42 +02:00
commit 33e8a53dc1
12 changed files with 678 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package database
import (
"context"
"database/sql"
)
type DBTX interface {
ExecContext(context.Context, string, ...interface{}) (sql.Result, error)
PrepareContext(context.Context, string) (*sql.Stmt, error)
QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)
QueryRowContext(context.Context, string, ...interface{}) *sql.Row
}
func New(db DBTX) *Queries {
return &Queries{db: db}
}
type Queries struct {
db DBTX
}
func (q *Queries) WithTx(tx *sql.Tx) *Queries {
return &Queries{
db: tx,
}
}
+28
View File
@@ -0,0 +1,28 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package database
import (
"database/sql"
"github.com/google/uuid"
)
type Feed struct {
ID uuid.UUID
CreatedAt sql.NullTime
UpdatedAt sql.NullTime
Name string
Url string
UserID string
}
type User struct {
ID uuid.UUID
CreatedAt sql.NullTime
UpdatedAt sql.NullTime
Name string
ApiKey string
}
+61
View File
@@ -0,0 +1,61 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
// source: users.sql
package database
import (
"context"
"database/sql"
"github.com/google/uuid"
)
const createUser = `-- name: CreateUser :one
INSERT INTO users (id, created_at, updated_at, name, api_key)
VALUES ($1, $2, $3, $4, encode(sha256(random()::text::bytea), 'hex'))
RETURNING id, created_at, updated_at, name, api_key
`
type CreateUserParams struct {
ID uuid.UUID
CreatedAt sql.NullTime
UpdatedAt sql.NullTime
Name string
}
func (q *Queries) CreateUser(ctx context.Context, arg CreateUserParams) (User, error) {
row := q.db.QueryRowContext(ctx, createUser,
arg.ID,
arg.CreatedAt,
arg.UpdatedAt,
arg.Name,
)
var i User
err := row.Scan(
&i.ID,
&i.CreatedAt,
&i.UpdatedAt,
&i.Name,
&i.ApiKey,
)
return i, err
}
const getUser = `-- name: GetUser :one
SELECT id, created_at, updated_at, name, api_key FROM users WHERE api_key = $1
`
func (q *Queries) GetUser(ctx context.Context, apiKey string) (User, error) {
row := q.db.QueryRowContext(ctx, getUser, apiKey)
var i User
err := row.Scan(
&i.ID,
&i.CreatedAt,
&i.UpdatedAt,
&i.Name,
&i.ApiKey,
)
return i, err
}