| 123456789101112131415161718192021222324 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package subscription // import "miniflux.app/v2/internal/reader/subscription"
- import "fmt"
- // subscription represents a feed subscription.
- type subscription struct {
- Title string `json:"title"`
- URL string `json:"url"`
- Type string `json:"type"`
- }
- func NewSubscription(title, url, kind string) *subscription {
- return &subscription{Title: title, URL: url, Type: kind}
- }
- func (s subscription) String() string {
- return fmt.Sprintf(`Title=%q, URL=%q, Type=%q`, s.Title, s.URL, s.Type)
- }
- // Subscriptions represents a list of subscription.
- type Subscriptions []*subscription
|