aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/handler.go
blob: 8585dcdb2cf8fac4e8dfd2065acf6e36ab8cc4a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

package api // import "miniflux.app/api"

import (
	"miniflux.app/reader/feed"
	"miniflux.app/storage"
)

type handler struct {
	store       *storage.Storage
	feedHandler *feed.Handler
}