mchess-client/lib/main.dart

9 lines
225 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2023-12-27 14:46:15 +00:00
import 'package:go_router/go_router.dart';
import 'package:mchess/chess/chess_app.dart';
void main() {
2023-12-27 14:46:15 +00:00
GoRouter.optionURLReflectsImperativeAPIs = true;
runApp(const ChessApp());
}