Revenge/src/entry.ts
2023-04-06 00:00:00 +01:00

15 lines
501 B
TypeScript

import { ClientInfoManager } from "@lib/native";
// This logs in the native logging implementation, e.g. logcat
console.log("Hello from Vendetta!");
import(".").then((m) => m.default()).catch((e) => {
console.log(e?.stack ?? e.toString());
alert([
"Failed to load Vendetta!\n",
`Build Number: ${ClientInfoManager.Build}`,
// @ts-expect-error, replaced in build script
`Vendetta: ${__vendettaVersion}`,
e?.stack || e.toString(),
].join("\n"));
});