项目的配置

This commit is contained in:
lqyan
2024-01-29 13:13:01 +08:00
parent 52e519a4ed
commit 4f2eb26a1e
7 changed files with 153 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
package com.jhinno.sdk.openapi.common.auth;
/**
* @author yanlongqi
* @date 2024/1/29 10:30
*/
public class Token {
}

View File

@@ -0,0 +1,26 @@
package com.jhinno.sdk.openapi.constant;
/**
* @author yanlongqi
* @date 2024/1/29 10:32
*/
public class AuthPathConstant {
/**
* 获取用户token
*/
public static final String AUTH_TOKEN = "/ws/api/auth/token";
/**
* 注销token
*/
public static final String AUTH_LOGOUT = "/ws/api/auth/logout";
/**
* 用户注册
*/
public static final String AUTH_REGISTER = "/ws/api/auth/register";
}

View File

@@ -0,0 +1,8 @@
package com.jhinno.sdk.openapi.utils;
/**
* @author yanlongqi
* @date 2024/1/29 10:31
*/
public class HttpClientUtils {
}