package user import "time" const ( userCredentialsTTL = 5 * time.Minute userCredentialsKeyPrefix = "usr:cred:" ) type userCredentialsPayload struct { Username string `json:"username"` Password string `json:"password"` }