7 lines
154 B
Kotlin
7 lines
154 B
Kotlin
|
|
package com.gamedog.vididin.core.router.interfaces
|
||
|
|
|
||
|
|
import androidx.fragment.app.Fragment
|
||
|
|
|
||
|
|
interface MineRouter {
|
||
|
|
fun createMineFragment(): Fragment
|
||
|
|
}
|