torrust-tracker-deployer 0.1.0-beta.2

Torrust Tracker Deployer - Deployment Infrastructure with Ansible and OpenTofu
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Main binary entry point for Torrust Tracker Deployer.
//!
//! This binary provides the main CLI interface for the deployment infrastructure.
//! All application logic is contained in the `bootstrap::app` module.

use torrust_tracker_deployer_lib::bootstrap;

#[tokio::main]
async fn main() {
    bootstrap::app::run().await;
}