handler.go 433 B

1234567891011121314151617181920
  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 ui // import "miniflux.app/ui"
  5. import (
  6. "miniflux.app/storage"
  7. "miniflux.app/template"
  8. "miniflux.app/worker"
  9. "github.com/gorilla/mux"
  10. )
  11. type handler struct {
  12. router *mux.Router
  13. store *storage.Storage
  14. tpl *template.Engine
  15. pool *worker.Pool
  16. }