Move feeds to cmd package

This commit is contained in:
2024-05-04 01:56:23 +02:00
parent 7f9f8f3243
commit 0e73e9d2d4
5 changed files with 41 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
package vex
import "github.com/google/uuid"
type Feed struct {
Id uuid.UUID `json:"id"`
Name string `json:"name"`
Link string `json:"link"`
FaviconUrl string `json:"faviconUrl"`
Tags []string `json:"tags"`
SubmitterId uuid.UUID `json:"submitterId"`
}