scout/Sources/ScoutCLT/AdvancedTopicsDoc/AdvancedTopic.swift

24 lines
410 B
Swift

//
// Scout
// Copyright (c) 2020-present Alexis Bridoux
// MIT license, see LICENSE file for details
import Foundation
import ArgumentParser
extension DocCommand {
}
enum AdvancedDocumentation {
enum Topic: String, ExpressibleByArgument {
case predicates
var doc: String {
switch self {
case .predicates: return Predicates.text
}
}
}
}