mirror of
https://github.com/mii443/AzooKeyKanaKanjiConverter.git
synced 2025-08-22 15:05:26 +00:00
* base value should be updated here * feature: implement cli tool for reading louds data * Update document
14 lines
390 B
Swift
14 lines
390 B
Swift
import KanaKanjiConverterModuleWithDefaultDictionary
|
|
import ArgumentParser
|
|
|
|
@main
|
|
public struct Anco: ParsableCommand {
|
|
public static var configuration = CommandConfiguration(
|
|
abstract: "Anco is A(zooKey) Kana-Ka(n)ji (co)nverter",
|
|
subcommands: [Subcommands.Run.self, Subcommands.Dict.self],
|
|
defaultSubcommand: Subcommands.Run.self
|
|
)
|
|
|
|
public init() {}
|
|
}
|