main.go 567 B

123456789101112131415161718192021
  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 main // import "miniflux.app"
  5. //go:generate go run generate.go
  6. //go:generate gofmt -s -w ui/static/css.go
  7. //go:generate gofmt -s -w ui/static/bin.go
  8. //go:generate gofmt -s -w ui/static/js.go
  9. //go:generate gofmt -s -w template/views.go
  10. //go:generate gofmt -s -w template/common.go
  11. //go:generate gofmt -s -w locale/translations.go
  12. import (
  13. "miniflux.app/cli"
  14. )
  15. func main() {
  16. cli.Parse()
  17. }