mirror of
https://github.com/miniflux/v2.git
synced 2025-08-11 17:51:01 +00:00
16 lines
468 B
Go
16 lines
468 B
Go
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package opml // import "miniflux.app/v2/internal/reader/opml"
|
|
|
|
// subcription represents a feed that will be imported or exported.
|
|
type subcription struct {
|
|
Title string
|
|
SiteURL string
|
|
FeedURL string
|
|
CategoryName string
|
|
Description string
|
|
}
|
|
|
|
// subcriptionList is a list of subscriptions.
|
|
type subcriptionList []*subcription
|