main function

void main()

Implementation

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(
    // Initialize Riverpod Scope.
    // For the Enterprise edition, use `overrides` here to inject advanced
    // repositories.
    const ProviderScope(child: KeyscopeApp()),
  );
}