Skip to content

Commit 65f63b8

Browse files
committed
[feat]: baseUrl 추가 (#35)
1 parent 6b4d643 commit 65f63b8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/src/main/java/com/kuit/ourmenu/di/NetworkModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ object NetworkModule {
2020
fun providesRetrofit(
2121
): Retrofit =
2222
Retrofit.Builder()
23-
.baseUrl("")
23+
.baseUrl("https://ourmenu-dev.shop/")
2424
.addConverterFactory(GsonConverterFactory.create(Gson()))
2525
.build()
2626

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package com.kuit.ourmenu.dummy.service
22

33
import com.kuit.ourmenu.dummy.data.DummyResponse
4+
import retrofit2.http.GET
45

56
interface DummyService {
6-
// @GET("")
7+
@GET("")
78
suspend fun getDummyData(): DummyResponse
89
}

0 commit comments

Comments
 (0)