My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/apps/phototool/pt-import

22 lines
489 B

#!/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"
}