2020-08-26 20:31:56 +02:00
|
|
|
// core
|
|
|
|
import { initCore } from './utils/aniwatchCore';
|
|
|
|
// helper
|
|
|
|
import { initHelpers } from './utils/helpers';
|
|
|
|
// enhancements
|
|
|
|
import { init as animeRequests } from './enhancements/animeRequests';
|
2020-09-20 17:44:43 +02:00
|
|
|
import { init as languageDisplay } from './enhancements/languageDisplay';
|
2020-08-26 20:31:56 +02:00
|
|
|
import { init as quickSearch } from './enhancements/quickSearch';
|
|
|
|
|
|
|
|
// core
|
|
|
|
initCore();
|
|
|
|
|
|
|
|
//helper
|
|
|
|
initHelpers();
|
|
|
|
|
|
|
|
// enhancements
|
|
|
|
animeRequests();
|
2020-09-20 17:44:43 +02:00
|
|
|
languageDisplay();
|
2020-08-26 20:31:56 +02:00
|
|
|
quickSearch();
|