10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
|
/**
|
||
|
* @file Index
|
||
|
* @description Creates an instance of Hibiki
|
||
|
* @license AGPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
import { MangoRecipe } from "./classes/Main";
|
||
|
import config from "../config.json";
|
||
|
|
||
|
new MangoRecipe();
|