envmgr 0.1.1

Dotfiles and CLI environment manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::path::PathBuf;

pub mod gh_cli;
pub mod one_password_ssh_agent;
pub mod tailscale;

#[expect(dead_code)]
pub struct OnUsePluginResult {
    env_vars: Vec<(String, String)>,
}

#[expect(dead_code)]
#[derive(Default)]
pub struct OnSwitchToPluginResult {
    files_to_link: Vec<(PathBuf, PathBuf)>,
}