feat(home): 팔로잉 인증 헤더를 추가한다

This commit is contained in:
2026-06-25 22:22:11 +09:00
parent 2d9200ec4d
commit 21d3ed4603
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package kr.co.vividnext.sodalive.v2.main.home.model
fun homeFollowingAuthHeader(token: String): String? = token
.trim()
.takeIf { it.isNotEmpty() }
?.let { "Bearer $it" }