Skip to content

Commit

Permalink
[add] : AuthDataSource 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
chanubc committed Jan 3, 2024
1 parent 2091a0b commit 0406712
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.sopt.dosopttemplate.data.datasource.remote

import org.sopt.dosopttemplate.data.dto.remote.request.RequestLoginDto
import org.sopt.dosopttemplate.data.dto.remote.request.RequestSignUpDto
import org.sopt.dosopttemplate.data.dto.remote.respose.ResponseLoginDto

interface AuthDataSource {
suspend fun login(request: RequestLoginDto): ResponseLoginDto
suspend fun signUp(request: RequestSignUpDto): Unit
}

0 comments on commit 0406712

Please sign in to comment.