update sentences API
All checks were successful
Deploy to Production / deploy (push) Successful in 22s

This commit is contained in:
silverpro89
2026-02-24 14:29:23 +07:00
parent cfc83c983c
commit d3da098f6f
10 changed files with 1447 additions and 19 deletions

View File

@@ -36,6 +36,9 @@ const LessonLeaderboard = require('./LessonLeaderboard');
// Group 3.2: Vocabulary System (NEW)
const Vocab = require('./Vocab');
// Group 3.2.1: Sentences System (NEW)
const Sentences = require('./Sentences');
// Group 3.3: Grammar System (NEW)
const Grammar = require('./Grammar');
const GrammarMapping = require('./GrammarMapping');
@@ -289,6 +292,9 @@ module.exports = {
// Group 3.2: Vocabulary System (NEW)
Vocab,
// Group 3.2.1: Sentences System (NEW)
Sentences,
// Group 3.3: Grammar System (NEW)
Grammar,