pesde 0.7.3

A package manager for the Luau programming language, supporting multiple runtimes including Roblox and Lune
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Subcommand;

mod default_index;

#[derive(Debug, Subcommand)]
pub enum ConfigCommands {
	/// Configuration for the default index
	DefaultIndex(default_index::DefaultIndexCommand),
}

impl ConfigCommands {
	pub async fn run(self) -> anyhow::Result<()> {
		match self {
			ConfigCommands::DefaultIndex(default_index) => default_index.run().await,
		}
	}
}