8 lines
250 B
Kotlin
8 lines
250 B
Kotlin
package com.gh.common.util
|
|
|
|
import com.gh.gamecenter.room.AppDatabase
|
|
import com.gh.gamecenter.room.dao.CommentDraftDao
|
|
|
|
object CommentDraftContainer {
|
|
val commentDraftDao: CommentDraftDao by lazy { AppDatabase.getInstance().commentDraftDao() }
|
|
} |