migrations

This commit is contained in:
Aiden McClelland
2021-08-17 17:21:05 -06:00
committed by Aiden McClelland
parent 3588d0342e
commit 5a13320921
3 changed files with 31 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
use crate::db::model::InstalledPackageDataEntry;
use crate::s9pk::manifest::{Manifest, PackageId};
use crate::Error;
pub async fn cleanup(info: Result<InstalledPackageDataEntry, &Manifest>) -> Result<(), Error> {
Ok(()) // TODO
}