Files
Michael Housh 78a632c3e5
All checks were successful
CI / Run tests. (push) Successful in 52s
feat: Adds more documentation and examples.
2024-12-08 18:27:31 -05:00

17 lines
330 B
Swift

import ArgumentParser
import CliDocCore
struct HStackCommand: ParsableCommand {
static let configuration = CommandConfiguration(commandName: "hstack")
func run() throws {
let note = HStack {
"NOTE:".color(.cyan).bold()
"This is my super cool note.".italic()
}
print()
print(note.render())
}
}