diff options
| author | Leonardo Bishop <me@leonardobishop.net> | 2025-09-09 22:44:09 +0100 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.net> | 2025-09-09 22:44:09 +0100 |
| commit | f1741a7faa9538e9b12ac60e0fbf6c7721a36059 (patch) | |
| tree | 2b70b14fc20a8520718910a0cd2e0134790c6f53 /pkg/database/sqlc/models.go | |
Initial commit
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"` +} |
