4
0

home_page.go 497 B

12345678910111213141516
  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 model // import "miniflux.app/model"
  5. // HomePages returns the list of available home pages.
  6. func HomePages() map[string]string {
  7. return map[string]string{
  8. "unread": "menu.unread",
  9. "starred": "menu.starred",
  10. "history": "menu.history",
  11. "feeds": "menu.feeds",
  12. "categories": "menu.categories",
  13. }
  14. }