info.go 403 B

123456789101112131415161718
  1. // Copyright 2018 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 cli
  5. import (
  6. "fmt"
  7. "runtime"
  8. "github.com/miniflux/miniflux/version"
  9. )
  10. func info() {
  11. fmt.Println("Version:", version.Version)
  12. fmt.Println("Build Date:", version.BuildDate)
  13. fmt.Println("Go Version:", runtime.Version())
  14. }