mirror of
https://github.com/mii443/AzooKeyKanaKanjiConverter.git
synced 2025-08-22 15:05:26 +00:00
13 lines
333 B
Swift
13 lines
333 B
Swift
import Foundation
|
|
import ArgumentParser
|
|
|
|
extension Subcommands {
|
|
struct NGram: ParsableCommand {
|
|
static let configuration = CommandConfiguration(
|
|
commandName: "ngram",
|
|
abstract: "Use EfficientNGram Implementation",
|
|
subcommands: [Self.Train.self, Self.Inference.self]
|
|
)
|
|
}
|
|
}
|