cli: Add a "send test email" command

Still unimplemented. This re-organizes the command-line flags.
This commit is contained in:
Valentin Tolmer
2021-11-09 10:29:46 +01:00
committed by nitnelave
parent 18e3892e55
commit fa0105fa96
3 changed files with 84 additions and 17 deletions

View File

@@ -104,5 +104,6 @@ fn main() -> Result<()> {
match cli_opts.command {
Command::ExportGraphQLSchema(opts) => infra::graphql::api::export_schema(opts),
Command::Run(opts) => run_server_command(opts),
Command::SendTestEmail(_opts) => Ok(()),
}
}