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
+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
}