mirror of
https://github.com/h2non/imaginary.git
synced 2025-12-13 20:37:04 +01:00
12 lines
318 B
Go
12 lines
318 B
Go
package main
|
|
|
|
// Version stores the current package semantic version
|
|
var Version = "dev"
|
|
|
|
// Versions represents the used versions for several significant dependencies
|
|
type Versions struct {
|
|
ImaginaryVersion string `json:"imaginary"`
|
|
BimgVersion string `json:"bimg"`
|
|
VipsVersion string `json:"libvips"`
|
|
}
|