handler.go 434 B

12345678910111213141516171819
  1. // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
  2. // SPDX-License-Identifier: Apache-2.0
  3. package ui // import "miniflux.app/v2/internal/ui"
  4. import (
  5. "miniflux.app/v2/internal/storage"
  6. "miniflux.app/v2/internal/template"
  7. "miniflux.app/v2/internal/worker"
  8. "github.com/gorilla/mux"
  9. )
  10. type handler struct {
  11. router *mux.Router
  12. store *storage.Storage
  13. tpl *template.Engine
  14. pool *worker.Pool
  15. }