diff options
Diffstat (limited to 'pkg/database/sqlc/models.go')
| -rw-r--r-- | pkg/database/sqlc/models.go | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pkg/database/sqlc/models.go b/pkg/database/sqlc/models.go new file mode 100644 index 0000000..2e74c4b --- /dev/null +++ b/pkg/database/sqlc/models.go @@ -0,0 +1,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"` +} |
