main function

Future<void> main()

Implementation

Future<void> main() async {
  // Set up logging
  Logger.root.level = Level.INFO;
  Logger.root.onRecord.listen((record) {
  });


  try {
    await runStompExample();
  } catch (e, stackTrace) {
    exit(1);
  }
}