package practicecontent import "errors" var ( ErrPracticeNotFound = errors.New("practice not found") ErrQuestionSetNotFound = errors.New("question set not found") ErrQuestionNotFound = errors.New("question not found") ErrInvalidQuestionItem = errors.New("invalid question item") )