mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 12:45:05 +00:00
13 lines
253 B
Rust
13 lines
253 B
Rust
use clap::Parser;
|
|
|
|
/// Open Rojo's documentation in your browser.
|
|
#[derive(Debug, Parser)]
|
|
pub struct DocCommand {}
|
|
|
|
impl DocCommand {
|
|
pub fn run(self) -> anyhow::Result<()> {
|
|
opener::open("https://rojo.space/docs")?;
|
|
Ok(())
|
|
}
|
|
}
|