#!/usr/bin/env raku # Define a str type of path # TODO: validate a path? subset path of Str; subset ID of Str; multi sub MAIN("--version") { say "pt-import 0.1.0" } multi sub MAIN( $src, #= Source of image data (on SD card) $store, #= Directory of darktable collections ID :$start-id, #= The start image ID to import ID :$end-Id, #= The end image ID to import Bool :$verbose, #= Display verbose output ) { say "execute main function" }