aboutsummaryrefslogtreecommitdiff
path: root/internal/models
diff options
context:
space:
mode:
Diffstat (limited to 'internal/models')
-rw-r--r--internal/models/feed.go14
1 files changed, 10 insertions, 4 deletions
diff --git a/internal/models/feed.go b/internal/models/feed.go
index 9c68adb..289b1e6 100644
--- a/internal/models/feed.go
+++ b/internal/models/feed.go
@@ -1,8 +1,14 @@
package models
+const (
+ TextFeed = iota
+ YoutubeFeed
+)
+
type Feed struct {
- Id int
- Name string
- User string
- Url string
+ Id int
+ Name string
+ User string
+ Url string
+ Category int
}