platform/lib/src/http/metadata/metadata.dart

13 lines
269 B
Dart
Raw Normal View History

part of angel_framework.http;
2016-06-21 22:56:04 +00:00
/// Annotation to map middleware onto a handler.
class Middleware {
final List handlers;
const Middleware(List this.handlers);
}
2016-06-21 22:56:04 +00:00
/// Annotation to set a service up to release hooks on every action.
class Hooked {
const Hooked();
}