mirror of
https://github.com/gnmyt/myspeed.git
synced 2026-02-10 23:58:38 -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();
|
|
}; |