fix: impl configure_vm

This commit is contained in:
2025-03-04 11:03:15 +00:00
parent 4aa96020a6
commit 8ec143bd6b
17 changed files with 179 additions and 155 deletions

View File

@ -68,7 +68,7 @@ impl LNVpsDb for LNVpsDbMysql {
Ok(())
}
async fn delete_user(&self, id: u64) -> Result<()> {
async fn delete_user(&self, _id: u64) -> Result<()> {
todo!()
}
@ -93,7 +93,7 @@ impl LNVpsDb for LNVpsDbMysql {
.map_err(Error::new)
}
async fn delete_user_ssh_key(&self, id: u64) -> Result<()> {
async fn delete_user_ssh_key(&self, _id: u64) -> Result<()> {
todo!()
}