Files
imaginary_mirror/version.go
2017-06-26 11:22:27 +02:00

17 lines
464 B
Go

package main
import "gopkg.in/h2non/bimg.v1"
// Version stores the current package semantic version
const Version = "1.0.1"
// Version represents the supported version
type Versions struct {
ImaginaryVersion string `json:"imaginary"`
BimgVersion string `json:"bimg"`
VipsVersion string `json:"libvips"`
}
// CurrentVersions stores the current runtime system version metadata
var CurrentVersions = Versions{Version, bimg.Version, bimg.VipsVersion}