api.dart.txt
785 Bytes
class Api {
/// app初始化配置信息
// GET /system/app/config
// 接口地址:https://app.apifox.com/link/project/2684751/apis/api-89897678
static const String appConfig = '/system/app/config';
/// 登陆
static const String login = 'login';
/// 登出
static const String logout = 'logout';
/// 发送验证码
static const String sendSmsCode = '/system/send/code';
/// 课程模块
// GET /home/courseModule
// 接口地址:https://app.apifox.com/link/project/2684751/apis/api-89897663
static const String courseModule = '/home/courseModule';
/// 课程列表
// GET /home/courseLesson
// 接口地址:https://app.apifox.com/link/project/2684751/apis/api-89897662
static const String courseLesson = '/home/courseLesson';
}