add cpuRepo

This commit is contained in:
Florian Schmid 2023-04-19 22:06:14 +02:00
parent b978835251
commit 72bc385048

View File

@ -1,15 +1,20 @@
import { CountUp } from "https://cdnjs.cloudflare.com/ajax/libs/countup.js/2.6.0/countUp.min.js";
import { Stats } from "./statistics.js";
import { CpuRepository } from "./cpuRepository.js"
var cpuList;
var currentCpu;
var nextCpu;
var repo;
var localStats;
export async function main() {
localStats = new Stats("highScore_cpu");
repo = new CpuRepository();
await repo.init();
await (fetch('./js/data.json')
.then((response) => response.json())
.then((json) => cpuList = json));