main.go 432 B

123456789101112131415161718
  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/js.go
  7. //go:generate gofmt -s -w template/views.go
  8. //go:generate gofmt -s -w template/common.go
  9. import (
  10. "miniflux.app/cli"
  11. )
  12. func main() {
  13. cli.Parse()
  14. }