package utils import "strings" func MaskToken(token string) string { return strings.Repeat("*", len(token)-4) + token[len(token)-4:] }