Blame view

lib/common/request/apis.dart 782 Bytes
056970d8   Key   feat: api
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  class Apis {
    /// 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';
  }