Skip to content

Commit

Permalink
✨ :: domain에서도 쓸 수 있게 repository 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
Cjsghkd committed Sep 18, 2023
1 parent 27c376e commit 1c028f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ class AuthRepositoryImpl @Inject constructor(
refreshToken,
expiresAt
)

override suspend fun saveRole(roles: String) = localDataSource.saveRole(roles)
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ interface AuthRepository {
refreshToken: String,
expiresAt: String
)

suspend fun saveRole(roles: String)
}

0 comments on commit 1c028f4

Please sign in to comment.