sideload-by-url

This commit is contained in:
Matt Hill
2026-03-17 19:17:49 -06:00
parent d8f8759dea
commit f6db176f6d
4 changed files with 81 additions and 3 deletions

View File

@@ -441,6 +441,12 @@ pub fn package<C: Context>() -> ParentHandler<C> {
.with_metadata("get_session", Value::Bool(true))
.no_cli(),
)
.subcommand(
"sideload-url",
from_fn_async(install::sideload_url)
.with_metadata("sync_db", Value::Bool(true))
.no_cli(),
)
.subcommand(
"install",
from_fn_async_local(install::cli_install)