package utils import "errors" var ( ErrUnauthorized = errors.New("unauthorized") ErrInternalServer = errors.New("internal server error") )