algae_cli/
cli.rs

1/// Implementation of the `decrypt` command.
2pub mod decrypt;
3
4/// Implementation of the `encrypt` command.
5pub mod encrypt;
6
7/// Implementation of the `keygen` command.
8pub mod keygen;
9
10/// Implementation of the `protect` command.
11pub mod protect;
12
13/// Implementation of the `reveal` command.
14pub mod reveal;