cargo-port 0.1.4

A TUI for inspecting and managing Rust projects
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod orchestrator;
mod start;
mod toast_bodies;
mod tracker;

pub use orchestrator::Startup;

use crate::tui::app::App;

impl App {
    pub(super) fn begin_startup_phase_from_scan(&mut self, lint_registered: usize) {
        start::begin_startup_phase_from_scan(self, lint_registered);
    }
}