UNPKG

educa-sdk

Version:

A JavaScript SDK for interacting with the Educa backend API (Admin, Staff, and Student methods)

17 lines (12 loc) 329 B
import { account } from '../student/account.js'; import { course } from '../student/course.js'; import { tuition } from '../student/tuition.js'; class Student { constructor() { this._init_sections() } // initialize sections async _init_sections() { } } export default Student;