2022-02-23 23:00:07 +00:00
|
|
|
import com.github.ajalt.clikt.core.subcommands
|
|
|
|
import commands.TransferMoneyCommand
|
|
|
|
import commands.fints4kCommandLineInterface
|
2022-02-22 00:47:14 +00:00
|
|
|
|
|
|
|
fun main(args: Array<String>) {
|
2022-02-23 23:00:07 +00:00
|
|
|
fints4kCommandLineInterface().subcommands(TransferMoneyCommand()).main(args)
|
2022-02-22 00:47:14 +00:00
|
|
|
}
|