mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-08-18 08:27:14 +02:00
Initial open source release
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/oapi-codegen/nullable"
|
||||
)
|
||||
|
||||
// NullableToString converts a nullable stringer to a string
|
||||
func NullableToString[T fmt.Stringer](x nullable.Nullable[T]) string {
|
||||
if !x.IsSpecified() || x.IsNull() {
|
||||
return ""
|
||||
}
|
||||
return x.MustGet().String()
|
||||
}
|
||||
Reference in New Issue
Block a user