6 lines
88 B
Kotlin
6 lines
88 B
Kotlin
package com.infendro.cli.parser
|
|
|
|
interface Parser<T> {
|
|
fun parse(text: String): T
|
|
}
|