Future main()

in example/example.dart [8:16]


Future<void> main() async {
  final server = await shelf_io.serve(
    proxyHandler('https://dart.dev'),
    'localhost',
    8080,
  );

  print('Proxying at http://${server.address.host}:${server.port}');
}