view src/main/kotlin/name/blackcap/passman/DeleteSubcommand.kt @ 1:8aacca5c2d53

Should have not committed this one.
author David Barts <n5jrn@me.com>
date Sun, 11 Sep 2022 16:12:47 -0700
parents a6cfdffcaa94
children eafa3779aef8
line wrap: on
line source

package name.blackcap.passman

class DeleteSubcommand(): Subcommand() {
    override fun run(args: Array<String>) {
        println("Not yet implemented")
    }
}