5 lines
86 B
Kotlin
5 lines
86 B
Kotlin
package com.gh.common.util
|
|
|
|
interface SimpleCallback<T> {
|
|
fun onCallback(arg: T)
|
|
} |