« get me outta code hell

patches.js « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/patches.js
blob: 3b9c8c300923cc637afc0a13f1e1fd95dd30eb11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export class PatchManager {
    patches = [];
}

export class Patch {
    static type = class {};

    static inputDescriptors = {};
    static outputDescriptors = {};
}

const patches = {};

patches.common = {};

Object.assign(patches.common, {
});

patches.hsmusic = {};

Object.assign(patches.hsmusic, {
    Album: class extends Patch {},
    Artist: class extends Patch {},
    Track: class extends Patch {},
});