Mercurial > cgi-bin > hgweb.cgi > PassMan
view src/main/kotlin/name/blackcap/passman/HelpSubcommand.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 | 698c4a3d758d |
line wrap: on
line source
package name.blackcap.passman class HelpSubcommand(): Subcommand() { override fun run(args: Array<String>) { println("PassMan: a password manager") println("Available subcommands:") println("create Create a new username/password pair.") println("read Retrieve data from existing record.") println("update Update existing record.") println("delete Delete existing record.") println("help Print this message.") println("list List records.") println("merge Merge passwords in from another PassMan database.") } }