fix: env saving

This commit is contained in:
Lakhan Samani
2022-05-31 13:11:54 +05:30
parent cf8762b7a0
commit eeff88c853
27 changed files with 532 additions and 493 deletions

6
server/utils/refs.go Normal file
View File

@@ -0,0 +1,6 @@
package utils
// NewStringRef returns a reference to a string with given value
func NewStringRef(v string) *string {
return &v
}