handler.go 336 B

123456789101112131415
  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/storage"
  7. "miniflux.app/worker"
  8. )
  9. type handler struct {
  10. store *storage.Storage
  11. pool *worker.Pool
  12. }