main.go 267 B

12345678910111213
  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. import (
  6. "miniflux.app/cli"
  7. )
  8. func main() {
  9. cli.Parse()
  10. }