Remove feed tags

This commit is contained in:
dogeystamp 2021-09-22 19:06:30 -04:00
parent ac57c3dcca
commit 54e2c6f448
No known key found for this signature in database
GPG Key ID: 4C53B0126F579F36

View File

@ -1,7 +1,6 @@
typedef struct { typedef struct {
const char *url; const char *url;
const char *feedName; const char *feedName;
const char *tags;
} linkStruct; } linkStruct;
/* Example link: /* Example link:
@ -17,7 +16,6 @@ static const linkStruct links[] = {
{ {
.url = "", .url = "",
.feedName = "", .feedName = "",
.tags = ""
}, },
}; };