mirror of
https://github.com/Jerryplusy/crystelf-plugin.git
synced 2025-10-14 05:39:18 +00:00
10 lines
213 B
JavaScript
10 lines
213 B
JavaScript
import configControl from '../config/configControl.js';
|
|
import rssCache from '../rss/rssCache.js';
|
|
|
|
export const crystelfInit = {
|
|
async CSH() {
|
|
await configControl.init();
|
|
await rssCache.init();
|
|
},
|
|
};
|