XylotrechusZ
XylotrechusZ Shell
: /home/mjbynoyq/wazirandsons.pk/wp-content/plugins/brizy/public/editor-client/src/sidebars/ [ drwxr-xr-x ]
import { getSidebars } from "@/api";
import { t } from "@/utils/i18n";
import { Sidebars } from "./types";
export const sidebars: Sidebars = {
async getSidebars(res, rej) {
try {
const content = await getSidebars();
res(content);
} catch (e) {
rej(t("Fail to find sidebars"));
}
}
};