Wrapping fortify is slow, painful and error-prone. Start apps in-process instead. Signed-off-by: Ophestra <cat@gensokyo.uk>
18 lines
329 B
Go
18 lines
329 B
Go
package internal
|
|
|
|
const compPoison = "INVALIDINVALIDINVALIDINVALIDINVALID"
|
|
|
|
var (
|
|
version = compPoison
|
|
)
|
|
|
|
// check validates string value set at compile time.
|
|
func check(s string) (string, bool) { return s, s != compPoison && s != "" }
|
|
|
|
func Version() string {
|
|
if v, ok := check(version); ok {
|
|
return v
|
|
}
|
|
return "impure"
|
|
}
|