platform/lib/src/symlink_route.dart
2017-11-26 21:21:19 -05:00

8 lines
258 B
Dart

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