kontenhumas-fe/service/user.ts

11 lines
253 B
TypeScript
Raw Normal View History

2026-01-22 02:20:17 +00:00
import { httpGetInterceptor } from "./http-config/http-interceptor-service";
export function getUserInfo() {
return httpGetInterceptor("users/info");
}
2026-02-10 06:10:40 +00:00
export function getUserById(userId: number) {
return httpGetInterceptor(`users/${userId}`);
}