Skip to main content

scaffold_app

Function scaffold_app 

Source
pub fn scaffold_app(
    name: &str,
    project_root: &Path,
    local_umbral_repo: Option<&Path>,
) -> Result<ScaffoldReport, ScaffoldError>
Expand description

Deprecated alias for scaffold_plugin. Everything the framework generates under plugins/ is a plugin — there is no separate “app” contract — so the old minimal startapp writer folds into startplugin / scaffold_plugin, leaving one generator to maintain. Kept as a forwarding shim so existing API callers keep working; the CLI startapp command forwards here and prints a deprecation note. (Not #[deprecated] at the Rust level — that would warn on every internal test call site; the user-facing deprecation lives on the CLI command.)