mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-01 08:01:35 -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
|
|
}
|