Yimaru-BackEnd/internal/services/practicecontent/errors.go
Yared Yemane 22464479ae feat: add full practice update endpoints for LMS and exam prep
PUT /practices/:id/full and PUT /exam-prep/practices/:id/full sync practice shell, question set settings, and questions in one request.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-08 02:43:34 -07:00

11 lines
293 B
Go

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")
)