update imports

This commit is contained in:
Satria 2026-07-26 09:19:02 +07:00
commit fb70f9ab1b
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import { Game } from "./utils";
import { Game } from "./game";
export type GameListener = (board: Game) => void;
export enum Piece {

View file

@ -1,6 +1,6 @@
<script lang="ts">
import { PIECE_TO_CHAR } from "$lib/chess/types";
import { boardToAscii, Game, startFEN } from "$lib/chess/utils";
import { boardToAscii, Game, startFEN } from "$lib/chess/game";
let showIndex = $state(false);
let fen = $state(startFEN);