mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-29 08:00:11 -04:00
7 lines
125 B
Go
7 lines
125 B
Go
package utils
|
|
|
|
// ToStringPointer :: convert a string into its pointer
|
|
func ToStringPointer(s string) *string {
|
|
return &s
|
|
}
|