()
| 25 | static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc; |
| 26 | |
| 27 | fn main() -> Result<(), Report<GraphError>> { |
| 28 | load_env(None); |
| 29 | |
| 30 | let Args { |
| 31 | subcommand, |
| 32 | tracing_config, |
| 33 | } = Args::parse_args(); |
| 34 | |
| 35 | let _sentry_guard = init(&tracing_config.sentry, release_name!()); |
| 36 | |
| 37 | subcommand.execute(tracing_config) |
| 38 | } |