mirror of
https://github.com/mii443/AzooKeyKanaKanjiConverter.git
synced 2025-12-07 13:08:23 +00:00
14 lines
351 B
Swift
14 lines
351 B
Swift
import Foundation
|
|
import KanaKanjiConverterModuleWithDefaultDictionary
|
|
import ArgumentParser
|
|
|
|
extension Subcommands {
|
|
struct Dict: ParsableCommand {
|
|
static let configuration = CommandConfiguration(
|
|
commandName: "dict",
|
|
abstract: "Show dict information",
|
|
subcommands: [Self.Read.self]
|
|
)
|
|
}
|
|
}
|