import Command from "#lib/command";
export default class extends Command {
static cli () {
return {};
}
async run () {
const pkg = this._findGitPackage();
if ( !pkg ) return result( [ 500, "Unable to find root package" ] );
return pkg.docs.init();
}
}