helpers/shorten_token.go (
7
lines of code) (
raw
):
package helpers func ShortenToken(token string) string { if len(token) >= 8 { return token[0:8] } return token }