blob: 94ab9c05ec2abcab5a5e76be39e1347b0accfbf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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
}
|