initial commit
All checks were successful
/ publish (push) Successful in 2m52s

This commit is contained in:
2025-07-12 20:15:32 +02:00
commit a0f2155b0c
29 changed files with 1231 additions and 0 deletions

View File

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