mirror of
https://github.com/Xevion/smart-rgb.git
synced 2025-12-18 14:13:26 -06:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
/**
|
|
* Desktop platform exports.
|
|
* Provides the game bridge instance.
|
|
*/
|
|
|
|
import { GameBridge } from "@/shared/api/GameBridge";
|
|
import { TauriTransport } from "./transport";
|
|
|
|
const transport = new TauriTransport();
|
|
|
|
export const bridge = new GameBridge(transport);
|