dvm 1.9.3

Deno Version Manager - Easy way to manage multiple active deno versions.
1
2
3
4
5
6
7
8
use anyhow::Result;
use clap::Command;
use clap_complete::{generate, Shell};

pub fn exec(app: &mut Command, shell: Shell) -> Result<()> {
  generate(shell, app, "dvm", &mut std::io::stdout());
  Ok(())
}