Skip to content

Commit

Permalink
[ADD/#32] user 관련 기초 세팅 완료
Browse files Browse the repository at this point in the history
  • Loading branch information
0zlrlo committed Jun 29, 2023
1 parent bea1325 commit 8e05738
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.release.keyneez.data.repository

interface UserRepository
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.release.keyneez.data.repository

import com.release.keyneez.data.source.LocalPrefDataSource
import com.release.keyneez.data.source.UserDataSource
import javax.inject.Inject

class UserRepositoryImpl @Inject constructor(
private val userDataSource: UserDataSource,
private val localPrefDataSource: LocalPrefDataSource
) : UserRepository
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.release.keyneez.data.service

interface UserService
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.release.keyneez.data.source

import com.release.keyneez.data.service.UserService
import javax.inject.Inject

class UserDataSource @Inject constructor(
private val userService: UserService
)

0 comments on commit 8e05738

Please sign in to comment.