fix(core): initial

This commit is contained in:
2020-01-17 16:34:40 +00:00
commit 083bc51530
11 changed files with 3512 additions and 0 deletions

7
ts/index.ts Normal file
View File

@@ -0,0 +1,7 @@
import * as plugins from './legal.plugins';
import { ICompany } from '@tsclass/tsclass';
export const createLicenseChecker = async () => {
const licenseCheckerMod = await import('./mod.licensechecker/classes.licensechecker');
return new licenseCheckerMod.LicenseChecker();
};