cyberark/secretless-broker

View on GitHub
test/util/testutil/utils.go

Summary

Maintainability
A
0 mins
Test Coverage
package testutil

// StringPointer simply returns a pointer to the given string.
// TODO: move this to a util folder somewhere
func StringPointer(s string) *string {
    return &s
}