forked from rojo-rbx/rojo
13 lines
264 B
Rust
13 lines
264 B
Rust
use structopt::StructOpt;
|
|
|
|
/// Open Rojo's documentation in your browser.
|
|
#[derive(Debug, StructOpt)]
|
|
pub struct DocCommand {}
|
|
|
|
impl DocCommand {
|
|
pub fn run(self) -> anyhow::Result<()> {
|
|
opener::open("https://rojo.space/docs")?;
|
|
Ok(())
|
|
}
|
|
}
|