ds4/src/hooks/ready.js
Johannes Loher 6277e27056 refactor: convert to ECMAScript where necessary
Also drop @league-of-foundry-developers/foundry-vtt-types.
2022-11-28 02:38:17 +01:00

11 lines
248 B
JavaScript

// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
import { migration } from "../migration/migration";
export function registerForReadyHook() {
Hooks.once("ready", () => {
migration.migrate();
});
}