blob: 342d6a06e7d98f945e5b035c5032dd552fe3fd77 (
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
|
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package db
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 int64
FetchIntervalSeconds int64
}
type User struct {
ID int64
Username string
PasswordHash string
CreatedAt string
}
|