Skip to content

Commit

Permalink
[chore] 코딩 컨벤션 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwon2724 committed Jul 26, 2024
1 parent 1200e22 commit b3a75f5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ class BearerTokenInterceptor : Interceptor {
val requestWithToken: Request = originalRequest.newBuilder()
.header(
"Authorization",
"Bearer eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiIxIiwiaWF0IjoxNzIxNjU4MjUxLCJleHAiOjMwMDE3MjE2NTgyNTF9.gw6LZimKLuZJ2y0UV5cgvk3F7o92pkRIDgx-qlD_S7qEI01QAFt9dZDyHADabftI"
"Bearer eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiIxIiwiaWF0IjoxNzIxNjU4MjUxLCJleHAiOj" +
"MwMDE3MjE2NTgyNTF9.gw6LZimKLuZJ2y0UV5cgvk3F7o92pkRIDgx-qlD_S7qEI01QAFt9dZDyHADabftI"
)
.build()

return chain.proceed(requestWithToken)
}
}

0 comments on commit b3a75f5

Please sign in to comment.