refactor(repositories): use barrel imports
This commit is contained in:
@@ -10,11 +10,13 @@
|
||||
*/
|
||||
|
||||
import type { Result } from "@/utils/result";
|
||||
import type { CreditsData } from "@/data/dto/user/credits_data";
|
||||
import type { CreditsHistoryData } from "@/data/dto/user/credits_history_data";
|
||||
import type { UpdateProfileRequest } from "@/data/dto/user/update_profile_request";
|
||||
import type { User } from "@/data/dto/user/user";
|
||||
import type { UserStatsResponse } from "@/data/dto/user/user_stats_response";
|
||||
import type {
|
||||
CreditsData,
|
||||
CreditsHistoryData,
|
||||
UpdateProfileRequest,
|
||||
User,
|
||||
UserStatsResponse,
|
||||
} from "@/data/dto/user";
|
||||
|
||||
export interface IUserRepository {
|
||||
/** 获取用户统计信息。 */
|
||||
|
||||
Reference in New Issue
Block a user