mirror of
https://github.com/gnmyt/myspeed.git
synced 2026-02-12 00:29:54 -06:00
9 lines
325 B
JavaScript
9 lines
325 B
JavaScript
import * as libreProvider from './providers/loadLibre.js';
|
|
import * as ooklaProvider from './providers/loadOokla.js';
|
|
import * as cloudflareProvider from './providers/loadCloudflare.js';
|
|
|
|
export const load = async () => {
|
|
await libreProvider.load();
|
|
await ooklaProvider.load();
|
|
await cloudflareProvider.load();
|
|
}; |