This commit is contained in:
Mike Schwörer 2023-07-24 11:16:57 +02:00
parent 16c66ee28c
commit a4def75d06
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 6 additions and 2 deletions

View File

@ -51,6 +51,10 @@ var (
// other values come from pkgconfig // other values come from pkgconfig
) )
func NewType(key string, defStatusCode *int) {
return ErrorType{key, defStatusCode}
}
type LogPrintLevel string type LogPrintLevel string
const ( const (

View File

@ -1,5 +1,5 @@
package goext package goext
const GoextVersion = "0.0.189" const GoextVersion = "0.0.190"
const GoextVersionTimestamp = "2023-07-24T11:11:15+0200" const GoextVersionTimestamp = "2023-07-24T11:16:57+0200"