v0.0.325
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 2m48s

This commit is contained in:
Mike Schwörer 2023-11-27 14:14:58 +01:00
parent 07fa21dcca
commit 8f15d42173
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 6 additions and 2 deletions

View File

@ -68,6 +68,10 @@ func Init(cfg ErrorPackageConfigInit) {
initialized = true
}
func Initialized() bool {
return initialized
}
func warnOnPkgConfigNotInitialized() {
if !initialized {
fmt.Printf("\n")

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.324"
const GoextVersion = "0.0.325"
const GoextVersionTimestamp = "2023-11-25T15:48:28+0100"
const GoextVersionTimestamp = "2023-11-27T14:14:58+0100"