21 lines
739 B
JavaScript
21 lines
739 B
JavaScript
|
import App from "resource:///com/github/Aylur/ags/app.js";
|
||
|
import * as Utils from "resource:///com/github/Aylur/ags/utils.js";
|
||
|
import Service from "resource:///com/github/Aylur/ags/service.js";
|
||
|
import Variable from "resource:///com/github/Aylur/ags/variable.js";
|
||
|
import Widget from "resource:///com/github/Aylur/ags/widget.js";
|
||
|
import Audio from "resource:///com/github/Aylur/ags/service/audio.js";
|
||
|
import Hyprland from "resource:///com/github/Aylur/ags/service/hyprland.js";
|
||
|
import Network from "resource:///com/github/Aylur/ags/service/network.js";
|
||
|
import SystemTray from "resource:///com/github/Aylur/ags/service/systemtray.js";
|
||
|
|
||
|
export {
|
||
|
App,
|
||
|
Audio,
|
||
|
Hyprland,
|
||
|
Network,
|
||
|
Service,
|
||
|
SystemTray,
|
||
|
Utils,
|
||
|
Variable,
|
||
|
Widget,
|
||
|
};
|