feat(backend/repositories): add get tags by file method

refactor(backend/domain): start switching from pgx types
This commit is contained in:
2025-10-09 01:39:19 +03:00
parent c39d82fafd
commit 00ab98072b
3 changed files with 45 additions and 3 deletions
+3 -3
View File
@@ -20,9 +20,9 @@ type MIME struct {
type (
CategoryCore struct {
ID string `json:"id"`
Name string `json:"name"`
Color pgtype.Text `json:"color"`
ID *string `json:"id"`
Name *string `json:"name"`
Color *string `json:"color"`
}
CategoryItem struct {
CategoryCore