temprs 2.9.11

A temporary file manager with stack mechanism
Documentation
1
2
3
4
5
6
7
8
9
//! `tp` / `temprs` binary entry point — delegates to `TempApp::run()`.

use temprs::model::app::TempApp;

fn main() {
    let mut app = TempApp::new();

    app.run();
}