8 lines
106 B
Kotlin
8 lines
106 B
Kotlin
package com.infendro.cli.argument
|
|
|
|
interface Parser<T> {
|
|
fun parse(
|
|
text: String?,
|
|
): T
|
|
}
|