29 lines
416 B
Go
29 lines
416 B
Go
// 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
|
|
}
|