summaryrefslogtreecommitdiffstats
path: root/pkg/database/sqlc/models.go
blob: 2e74c4b8d38809a83a113eeeed907aafd4b05442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by sqlc. DO NOT EDIT.
// versions:
//   sqlc v1.29.0

package sqlc

type Entry struct {
	ID          int64  `json:"id"`
	Title       string `json:"title"`
	Kind        int64  `json:"kind"`
	Url         string `json:"url"`
	Description string `json:"description"`
	Timestamp   string `json:"timestamp"`
}

type Kind struct {
	ID    int64  `json:"id"`
	Name  string `json:"name"`
	Emoji string `json:"emoji"`
}