summaryrefslogtreecommitdiff
path: root/frontend/src/steamfixes/index.ts
blob: 3b3ee75f889eff61201ae6aa3dd061c7ffd2af20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// import restartFix from './restart';
import cefSocketFix from './socket';

let fixes: Function[] = [];

export function deinitSteamFixes() {
  fixes.forEach((deinit) => deinit());
}

export async function initSteamFixes() {
  fixes.push(cefSocketFix());
  // fixes.push(await restartFix());
}