Peekaboo/peekaboo-cli/Sources/peekaboo/main.swift
Peter Steinberger 731b89b779 Prepare release
2025-05-27 00:21:29 +02:00

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()