Files
cli.kt/src/commonMain/kotlin/com/infendro/cli/argument/Parser.kt
Infendro a0f2155b0c
All checks were successful
/ publish (push) Successful in 2m52s
initial commit
2025-07-12 20:15:32 +02:00

8 lines
106 B
Kotlin

package com.infendro.cli.argument
interface Parser<T> {
fun parse(
text: String?,
): T
}