platform/lib/src/http/metadata/metadata.dart
2016-06-21 18:56:04 -04:00

13 lines
No EOL
269 B
Dart

part of angel_framework.http;
/// Annotation to map middleware onto a handler.
class Middleware {
final List handlers;
const Middleware(List this.handlers);
}
/// Annotation to set a service up to release hooks on every action.
class Hooked {
const Hooked();
}