feat(permis->update): low
BREAKING CHANGE:
This commit is contained in:
parent
cba3d619b9
commit
79367aef7f
@ -0,0 +1,12 @@
|
||||
import retrofit2.http.Header
|
||||
import retrofit2.http.POST
|
||||
import retrofit2.Response
|
||||
import retrofit2.http.Body
|
||||
|
||||
interface AttendanceApiService {
|
||||
@POST("/attendance/checkin")
|
||||
suspend fun checkIn(
|
||||
@Header("Authorization") token: String,
|
||||
@Body body: CheckInRequest
|
||||
): Response<CheckInResponse>
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user