zuke_http_runtime 0.1.1
zuke_http_runtime: ^0.1.1 copied to clipboard
Dart-only runtime registration contract inspected by Zuke.
example/zuke_http_runtime_example.dart
import 'package:zuke_http_runtime/zuke_http_runtime.dart';
Future<void> main() async {
final response = await const ZukeHttpApplication().dispatch(
const ZukeHttpRequest(method: 'GET', path: '/health'),
);
print(response.statusCode);
}