Blame view

lib/network/api.dart.txt 785 Bytes
2a29701f   liangchengyou   feat:提交代码
1
  class Api {
22b7d4da   Key   feat: user, api path
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
    /// 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';
  }