package models import "errors" var ( // ErrInvalidArgument for invalid arguments ErrInvalidArgument = errors.New("invalid argument") )