2022-11-12 21:55:45 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2023-12-27 14:46:15 +00:00
|
|
|
import 'package:go_router/go_router.dart';
|
2022-12-25 18:57:47 +00:00
|
|
|
import 'package:mchess/chess/chess_app.dart';
|
2022-11-12 21:55:45 +00:00
|
|
|
|
|
|
|
void main() {
|
2023-12-27 14:46:15 +00:00
|
|
|
GoRouter.optionURLReflectsImperativeAPIs = true;
|
2022-12-25 18:57:47 +00:00
|
|
|
runApp(const ChessApp());
|
2022-11-12 21:55:45 +00:00
|
|
|
}
|