10 lines
315 B
JavaScript
10 lines
315 B
JavaScript
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export default async function registerHandlebarsPartials() {
|
|
const templatePaths = [
|
|
'modules/darkness-dependent-vision/templates/darkness-dependent-vision-config-form-groups.hbs',
|
|
];
|
|
await loadTemplates(templatePaths);
|
|
}
|