Skip to content

Commit

Permalink
[CHORE] #15 : usecase - Singleton Annotation 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Oct 11, 2023
1 parent b3b8937 commit 1c75ae2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ package com.wap.wapp.core.domain.usecase.auth

import com.wap.wapp.core.data.repository.auth.AuthRepository
import javax.inject.Inject
import javax.inject.Singleton

@Singleton
class DeleteUserUseCase @Inject constructor(
private val authRepository: AuthRepository,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ package com.wap.wapp.core.domain.usecase.auth

import com.wap.wapp.core.data.repository.auth.AuthRepository
import javax.inject.Inject
import javax.inject.Singleton

@Singleton
class SignOutUseCase @Inject constructor(
private val authRepository: AuthRepository,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ package com.wap.wapp.core.domain.usecase.user

import com.wap.wapp.core.data.repository.user.UserRepository
import javax.inject.Inject
import javax.inject.Singleton

@Singleton
class PostUserProfileUseCase @Inject constructor(
private val userRepository: UserRepository,
) {
Expand Down

0 comments on commit 1c75ae2

Please sign in to comment.