mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-24 14:37:39 +00:00
15 lines
No EOL
447 B
Swift
15 lines
No EOL
447 B
Swift
import Foundation
|
|
import ArgumentParser
|
|
|
|
struct PeekabooCommand: ParsableCommand {
|
|
static let configuration = CommandConfiguration(
|
|
commandName: "peekaboo",
|
|
abstract: "A macOS utility for screen capture, application listing, and window management",
|
|
version: "1.1.1",
|
|
subcommands: [ImageCommand.self, ListCommand.self],
|
|
defaultSubcommand: ImageCommand.self
|
|
)
|
|
}
|
|
|
|
// Entry point
|
|
PeekabooCommand.main() |