mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-15 04:00:14 -05:00
7 lines
123 B
Go
7 lines
123 B
Go
package utils
|
|
|
|
// ToStringPointer converts a string into its pointer
|
|
func ToStringPointer(s string) *string {
|
|
return &s
|
|
}
|