tidepool-gvm 0.1.4

Go Version Manager CLI - Simple and fast Go version switching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Library interface for the GVM CLI
// This allows integration tests to access internal modules

pub mod cli;
pub mod commands;
pub mod config;
pub mod ui;

// Re-export commonly used types for convenience
pub use cli::Cli;
pub use config::Config;
pub use ui::UI;