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>
11 lines
293 B
Go
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")
|
|
)
|