2023-06-19 14:42:47 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-19 21:10:04 -08:00
|
|
|
|
2023-08-10 19:46:45 -07: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
|
2024-05-02 16:15:47 +02:00
|
|
|
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
|