mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-15 13:00:08 -05: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
|
|
}
|