4
0

home_page.go 462 B

123456789101112131415
  1. // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
  2. // SPDX-License-Identifier: Apache-2.0
  3. package model // import "miniflux.app/v2/internal/model"
  4. // HomePages returns the list of available home pages.
  5. func HomePages() map[string]string {
  6. return map[string]string{
  7. "unread": "menu.unread",
  8. "starred": "menu.starred",
  9. "history": "menu.history",
  10. "feeds": "menu.feeds",
  11. "categories": "menu.categories",
  12. }
  13. }