improve parsing and flag Options

This commit is contained in:
2025-12-31 22:45:43 +01:00
parent 06a2d1bdce
commit 0dc064b8cf
15 changed files with 171 additions and 131 deletions

View File

@@ -1,5 +1,5 @@
package com.infendro.cli.parser
interface Parser<T> {
fun parse(text: String?): T
fun parse(text: String): T
}