v0.0.535
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m52s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m52s
This commit is contained in:
parent
d47c84cd47
commit
5a8d7110e4
@ -171,7 +171,7 @@ func (i *{{.Name}}) String() string {
|
|||||||
if i == nil {
|
if i == nil {
|
||||||
return "<nil>"
|
return "<nil>"
|
||||||
}
|
}
|
||||||
return string(i)
|
return string(*i)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i {{.Name}}) Prefix() string {
|
func (i {{.Name}}) Prefix() string {
|
||||||
|
@ -73,7 +73,7 @@ func (e *{{.EnumTypeName}}) String() string {
|
|||||||
if e == nil {
|
if e == nil {
|
||||||
return "<nil>"
|
return "<nil>"
|
||||||
}
|
}
|
||||||
return string(e)
|
return string(*e)
|
||||||
}
|
}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ func (i *{{.Name}}) String() string {
|
|||||||
if i == nil {
|
if i == nil {
|
||||||
return "<nil>"
|
return "<nil>"
|
||||||
}
|
}
|
||||||
return string(i)
|
return string(*i)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i {{.Name}}) ObjID() (primitive.ObjectID, error) {
|
func (i {{.Name}}) ObjID() (primitive.ObjectID, error) {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
package goext
|
package goext
|
||||||
|
|
||||||
const GoextVersion = "0.0.534"
|
const GoextVersion = "0.0.535"
|
||||||
|
|
||||||
const GoextVersionTimestamp = "2024-10-22T09:40:53+0200"
|
const GoextVersionTimestamp = "2024-10-22T09:41:59+0200"
|
||||||
|
Loading…
Reference in New Issue
Block a user