mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-08 06:28:29 +01:00
16 lines
268 B
JavaScript
16 lines
268 B
JavaScript
|
(function() {
|
||
|
var DrawIOWrapper;
|
||
|
|
||
|
DrawIOWrapper = class DrawIOWrapper extends this.OS.GUI.BaseApplication {
|
||
|
constructor(args) {
|
||
|
super("DrawIOWrapper", args);
|
||
|
}
|
||
|
|
||
|
main() {}
|
||
|
|
||
|
};
|
||
|
|
||
|
this.OS.register("DrawIOWrapper", DrawIOWrapper);
|
||
|
|
||
|
}).call(this);
|