starwork_flutter/lib/api/api_path.dart

13 lines
659 B
Dart
Raw Normal View History

class ApiPath {
static const String sendValidationCode = "/v1/common/sendValidationCode";
2025-09-02 11:45:38 +08:00
static const String validationCodeLogin = "/v1/user/codeLogin";
static const String passwordLogin = "/v1/user/pwdLogin";
static const String allTeamList = "/v1/team/teamListAll";
static const String sceneList = "/v1/team/sceneList";
static const String createTeam = "/v1/team/createTeam";
2025-09-12 10:35:07 +08:00
static const String changeTeam = "/v1/team/changeTeam";
static const String bindTeamStarCloudAccount = "/v1/team/bindStarCloudAccount";
2025-09-12 15:25:36 +08:00
static const String updateTeamInfo = "/v1/team/updateTeam";
2025-09-25 11:53:48 +08:00
static const String getInviteInfo = "/v1/team/getInviteInfo";
}