adding features

This commit is contained in:
orangecoding
2025-12-09 13:40:13 +01:00
parent 9a6ae5c30a
commit 89c93efa17
9 changed files with 78 additions and 17 deletions

9
lib/features.js Normal file
View File

@@ -0,0 +1,9 @@
const FEATURES = {
WATCHLIST_MANAGEMENT: false,
};
export default function getFeatures() {
return {
...FEATURES,
};
}