scoop-uv 0.15.1

Scoop up your Python envs with uv — the command is scuv
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Resolve command

use crate::core::VersionService;
use crate::error::Result;

/// Execute the resolve command
pub fn execute() -> Result<()> {
    if let Some(env_name) = VersionService::resolve_current() {
        println!("{env_name}");
    }
    Ok(())
}