From bcfc66731f29a59110df2912f24de8225d27f49d Mon Sep 17 00:00:00 2001 From: genofire Date: Sat, 28 Dec 2019 17:46:59 +0100 Subject: [PATCH] fix SpaceData struct --- backend/spacedata.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/spacedata.go b/backend/spacedata.go index 9a977eb..141cb31 100644 --- a/backend/spacedata.go +++ b/backend/spacedata.go @@ -42,6 +42,11 @@ type Contact struct { IssueMail string `json:"issue_mail"` } +type Feed struct { + Type string `json:"type"` + Url string `json:"url"` +} + type Feeds struct { Blog Feed `json:"blog"` Wiki Feed `json:"wiki"`