Respond with extension name and version

This commit is contained in:
Jere Vaara
2024-10-10 12:51:53 +03:00
parent a766ac3dc7
commit 2b5d79f625
4 changed files with 44 additions and 7 deletions

View File

@@ -168,3 +168,9 @@ pub struct InstalledExtension {
pub struct InstalledExtensions {
pub extensions: Vec<InstalledExtension>,
}
#[derive(Clone, Debug, Default, Serialize)]
pub struct ExtensionInstallResult {
pub extension: String,
pub version: String,
}