8 lines
147 B
Go
8 lines
147 B
Go
|
package config
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func VerifyEmailURL(token string) string {
|
||
|
return fmt.Sprintf("%s/account/verify-email#%s", Read().WebURL, token)
|
||
|
}
|