handler.go 403 B

1234567891011121314151617
  1. // Copyright 2017 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package api // import "miniflux.app/api"
  5. import (
  6. "miniflux.app/reader/feed"
  7. "miniflux.app/storage"
  8. "miniflux.app/worker"
  9. )
  10. type handler struct {
  11. store *storage.Storage
  12. pool *worker.Pool
  13. feedHandler *feed.Handler
  14. }