1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +00:00
miniflux-v2/internal/reader/opml/subscription.go

17 lines
468 B
Go
Raw Permalink Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-19 21:10:04 -08:00
package opml // import "miniflux.app/v2/internal/reader/opml"
2017-11-19 21:10:04 -08:00
2025-08-08 02:27:04 +02:00
// subcription represents a feed that will be imported or exported.
type subcription struct {
2017-11-19 21:10:04 -08:00
Title string
SiteURL string
FeedURL string
CategoryName string
Description string
2017-11-19 21:10:04 -08:00
}
2025-08-08 02:27:04 +02:00
// subcriptionList is a list of subscriptions.
type subcriptionList []*subcription