platform/lib/src/symlink_route.dart
2018-08-20 14:59:51 -04:00

8 lines
267 B
Dart

part of angel_route.src.router;
/// Placeholder [Route] to serve as a symbolic link
/// to a mounted [Router].
class SymlinkRoute<T> extends Route<T> {
final Router<T> router;
SymlinkRoute(String path, this.router) : super(path, method: null, handlers: null);
}