platform/lib/src/symlink_route.dart
2018-08-20 15:34:00 -04:00

9 lines
273 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);
}