blob: 81fcd0c527ece3d1d6427787118314f8ed76e609 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package db
import (
"database/sql"
)
type Article struct {
ID int64
FeedID int64
Guid string
Title string
Url string
IsRead int64
}
type Feed struct {
ID int64
Url string
Title string
FetchedAt string
IsSubscribed int64
UserID sql.NullInt64
}
type User struct {
ID int64
Username string
PasswordHash string
CreatedAt string
}
|