shoka 0.1.0

A repository workspace manager — jj-aware, TUI-first successor to ghq / rhq.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub async fn add(_repo: Option<String>, _tags: Vec<String>) -> anyhow::Result<()> {
    anyhow::bail!("`shoka tag add` is not implemented yet")
}

pub async fn rm(_repo: Option<String>, _tags: Vec<String>) -> anyhow::Result<()> {
    anyhow::bail!("`shoka tag rm` is not implemented yet")
}

pub async fn ls(_repo: Option<String>) -> anyhow::Result<()> {
    anyhow::bail!("`shoka tag ls` is not implemented yet")
}

pub async fn who(_tag: Option<String>) -> anyhow::Result<()> {
    anyhow::bail!("`shoka tag who` is not implemented yet")
}