Compare commits

..

1 Commits

Author SHA1 Message Date
8f15d42173 v0.0.325
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 2m48s
2023-11-27 14:14:58 +01:00
2 changed files with 6 additions and 2 deletions

View File

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

View File

@@ -1,5 +1,5 @@
package goext 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"