14 lines
230 B
Go
14 lines
230 B
Go
|
package subject
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func getAuthSMSValue(val string) string {
|
||
|
return fmt.Sprintf("%s.%s", prefixes.AuthSMS, val)
|
||
|
}
|
||
|
|
||
|
var AuthSMS = struct {
|
||
|
CreateUserSMS string
|
||
|
}{
|
||
|
CreateUserSMS: getAuthSMSValue("create_user_sms"),
|
||
|
}
|