2023-06-19 14:42:47 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-19 21:10:04 -08:00
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2017-11-19 21:10:04 -08:00
|
|
|
|
|
|
|
import (
|
2023-08-10 19:46:45 -07:00
|
|
|
"miniflux.app/v2/internal/storage"
|
|
|
|
"miniflux.app/v2/internal/template"
|
|
|
|
"miniflux.app/v2/internal/worker"
|
2018-09-03 14:26:40 -07:00
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2017-11-19 21:10:04 -08:00
|
|
|
)
|
|
|
|
|
2018-11-11 11:28:29 -08:00
|
|
|
type handler struct {
|
2021-01-02 16:33:41 -08:00
|
|
|
router *mux.Router
|
|
|
|
store *storage.Storage
|
|
|
|
tpl *template.Engine
|
|
|
|
pool *worker.Pool
|
2017-11-19 21:10:04 -08:00
|
|
|
}
|