feat: with apt
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-03-02 16:07:05 +01:00
parent d42bd82f76
commit d2467529b3
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -77,4 +77,10 @@ impl AptExt for LeptosService {
Apt::new().extend(deps),
)))
}
fn with_apt_release(&mut self, deps: &[&str]) -> &mut Self {
self.with_stage(super::RustServiceStage::BeforePackage(Arc::new(
Apt::new().extend(deps),
)))
}
}