chore: renamed to sipp-so 145ef62d
Steve · 2026-02-19 13:32 2 file(s) · +6 −6
Cargo.toml +1 −1
1 1
[package]
2 -
name = "sipp"
2 +
name = "sipp-so"
3 3
version = "0.1.0"
4 4
edition = "2024"
5 5
src/main.rs +5 −5
52 52
    match cli.command {
53 53
        Some(Commands::Server { port, host }) => {
54 54
            let rt = tokio::runtime::Runtime::new()?;
55 -
            rt.block_on(sipp::server::run(host, port));
55 +
            rt.block_on(sipp_so::server::run(host, port));
56 56
        }
57 57
        Some(Commands::Tui { remote, api_key }) => {
58 -
            sipp::tui::run_interactive(remote, api_key)?;
58 +
            sipp_so::tui::run_interactive(remote, api_key)?;
59 59
        }
60 60
        Some(Commands::Auth) => {
61 -
            sipp::tui::run_auth()?;
61 +
            sipp_so::tui::run_auth()?;
62 62
        }
63 63
        None => {
64 64
            if let Some(file) = cli.file {
65 -
                sipp::tui::run_file_upload(cli.remote, cli.api_key, file)?;
65 +
                sipp_so::tui::run_file_upload(cli.remote, cli.api_key, file)?;
66 66
            } else {
67 -
                sipp::tui::run_interactive(cli.remote, cli.api_key)?;
67 +
                sipp_so::tui::run_interactive(cli.remote, cli.api_key)?;
68 68
            }
69 69
        }
70 70
    }