mirror of
https://github.com/h2non/imaginary.git
synced 2026-02-28 19:07:35 +01:00
17 lines
464 B
Go
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}
|