mirror of
https://github.com/versia-pub/versia-go.git
synced 2025-12-06 14:28:20 +01:00
6 lines
65 B
Go
6 lines
65 B
Go
|
|
package helpers
|
||
|
|
|
||
|
|
func StringPtr(s string) *string {
|
||
|
|
return &s
|
||
|
|
}
|