blob: e3971028ab693973754974ea4ea4e24253a49625 (
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
|
// 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
}
type User struct {
ID int64
Username string
PasswordHash string
CreatedAt string
}
|