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
use clap::Args;
use pesde::Project;

#[derive(Debug, Args)]
pub struct PathCommand;

impl PathCommand {
	#[allow(clippy::unnecessary_wraps, clippy::needless_pass_by_value)]
	pub fn run(self, project: Project) -> anyhow::Result<()> {
		println!("{}", project.cas_dir().display());

		Ok(())
	}
}