AppRamImpl.kt 286 Bytes
Newer Older
ydl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.yidianling.user.mine.data


internal class AppRamImpl private constructor(): AppRam {

    companion object {
        fun getInstance(): AppRamImpl {
            return Holder.INSTANCE
        }
    }


    private object Holder {
        val INSTANCE = AppRamImpl()
    }
}