Initial Air Freshener plugin implementation

This commit is contained in:
Ebu
2025-12-02 00:08:44 +01:00
commit 853b60e126
29 changed files with 3170 additions and 0 deletions

16
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "post",
"args": ["build", "--package", "ebu-plug-core"],
"problemMatcher": ["$rustc"],
"group": {
"kind": "build",
"isDefault": true
},
"label": "rust: cargo build"
}
]
}