subscription.go 384 B

12345678910111213
  1. // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
  2. // SPDX-License-Identifier: Apache-2.0
  3. package opml // import "miniflux.app/v2/internal/reader/opml"
  4. // subcription represents a feed that will be imported or exported.
  5. type subcription struct {
  6. Title string
  7. SiteURL string
  8. FeedURL string
  9. CategoryName string
  10. Description string
  11. }