scoop-uv 0.13.0

Scoop up your Python envs — pyenv-style workflow powered by uv
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(())
}