1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
mod sdkdocs;

use duckscript::types::command::Commands;
use duckscript::types::error::ScriptError;

static PACKAGE: &str = "internal";

pub(crate) fn load(commands: &mut Commands) -> Result<(), ScriptError> {
    commands.set(sdkdocs::create(PACKAGE))?;

    Ok(())
}