1
0
mirror of https://github.com/strongdm/comply synced 2024-09-29 06:30:59 +00:00
comply/vendor/github.com/containous/go-bindata/go-bindata/version.go
2019-07-14 13:51:10 -03:00

20 lines
431 B
Go

// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
// license. Its contents can be found at:
// http://creativecommons.org/publicdomain/zero/1.0/
package main
import (
"fmt"
"runtime"
)
const AppName = "go-bindata"
var AppVersion = "dev"
func Version() string {
return fmt.Sprintf("%s %s (Go runtime %s).\nCopyright (c) 2010-2013, Jim Teeuwen.",
AppName, AppVersion, runtime.Version())
}