Skip to content

Commit 19d9e7c

Browse files
committed
modify: 포메팅
1 parent 30481cf commit 19d9e7c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/services/totalStats.service.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ import { TotalStatsRepository } from '@/repositories/totalStats.repository';
55
export class TotalStatsService {
66
constructor(private totalStatsRepo: TotalStatsRepository) {}
77

8-
async getTotalStats(userId: number, period: TotalStatsPeriod = 7, type: TotalStatsType = 'view'): Promise<TotalStatsItem[]> {
8+
async getTotalStats(
9+
userId: number,
10+
period: TotalStatsPeriod = 7,
11+
type: TotalStatsType = 'view',
12+
): Promise<TotalStatsItem[]> {
913
try {
1014
const rawStats = await this.totalStatsRepo.getTotalStats(userId, period, type);
1115

0 commit comments

Comments
 (0)