mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-03-25 09:25:47 +00:00
15 lines
455 B
Swift
15 lines
455 B
Swift
import ArgumentParser
|
|
import Foundation
|
|
|
|
struct PeekabooCommand: ParsableCommand {
|
|
static let configuration = CommandConfiguration(
|
|
commandName: "peekaboo",
|
|
abstract: "A macOS utility for screen capture, application listing, and window management",
|
|
version: Version.current,
|
|
subcommands: [ImageCommand.self, ListCommand.self],
|
|
defaultSubcommand: ImageCommand.self
|
|
)
|
|
}
|
|
|
|
// Entry point
|
|
PeekabooCommand.main()
|