Skip to content

Commit

Permalink
[chore] : #8 GlobalApplication TokenManager 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
1971123-seongmin committed Nov 6, 2024
1 parent e7674da commit 7f49c7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/main/java/org/sopt/and/GlobalApplication.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.sopt.and

import android.app.Application
import org.sopt.and.utils.InfoDataStore
import org.sopt.and.utils.TokenManger

class GlobalApplication: Application() {
private lateinit var dataStore: InfoDataStore
private lateinit var dataStore: TokenManger

companion object {
lateinit var globalApplication: GlobalApplication
Expand All @@ -15,9 +15,9 @@ class GlobalApplication: Application() {
super.onCreate()

globalApplication = this
dataStore = InfoDataStore(this)
dataStore = TokenManger(this)
}

fun getDataStore(): InfoDataStore = dataStore
fun getDataStore(): TokenManger = dataStore

}

0 comments on commit 7f49c7c

Please sign in to comment.