Skip to content

Commit

Permalink
feat: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
paulobarbosa committed Jan 13, 2025
1 parent e138d2a commit 95bba8e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { FetchAccountByIdRepository } from '@/core/domain/repositories/accounts/
import { AccountResponseDto } from '../../dto/account-dto'
import { AccountMapper } from '../../mappers/account-mapper'
import { inject, injectable } from 'inversify'
import { LogOperation } from '../../decorators/log-operation'

export interface FetchAccountById {
execute: (
Expand All @@ -17,7 +18,7 @@ export class FetchAccountByIdUseCase implements FetchAccountById {
@inject(FetchAccountByIdRepository)
private readonly fetchAccountByIdRepository: FetchAccountByIdRepository
) {}

@LogOperation({ layer: 'application' })
async execute(
organizationId: string,
ledgerId: string,
Expand Down

0 comments on commit 95bba8e

Please sign in to comment.