blob: b7d4a01a3d1bd776cefeb49c64e9979982064614 [file] [log] [blame]
// Generated by generate_server_wrappers.dart. Do not edit.
import 'package:stream_channel/stream_channel.dart';
import 'response_headers_server.dart';
/// Starts the redirect test HTTP server in the same process.
Future<StreamChannel<Object?>> startServer() async {
final controller = StreamChannelController<Object?>(sync: true);
hybridMain(controller.foreign);
return controller.local;
}