clawless 0.5.0

An opinionated framework for building command-line applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error: command function is missing the `context` parameter

       = help: command functions must accept `context: Context` as the second parameter

           #[command]
           pub async fn my_command(args: MyArgs, context: Context) -> CommandResult {
               ...
           }
 --> tests/ui/fail-missing-context.rs:9:5
  |
9 | pub async fn greet(args: GreetArgs) -> CommandResult {
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^