2018-01-03 07:04:48 +01:00
|
|
|
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
package cli // import "miniflux.app/cli"
|
2018-01-03 07:04:48 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/version"
|
2018-01-03 07:04:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func info() {
|
|
|
|
fmt.Println("Version:", version.Version)
|
|
|
|
fmt.Println("Build Date:", version.BuildDate)
|
|
|
|
fmt.Println("Go Version:", runtime.Version())
|
2018-09-17 04:13:16 +02:00
|
|
|
fmt.Println("Compiler:", runtime.Compiler)
|
|
|
|
fmt.Println("Arch:", runtime.GOARCH)
|
|
|
|
fmt.Println("OS:", runtime.GOOS)
|
2018-01-03 07:04:48 +01:00
|
|
|
}
|