platform/packages/route/lib/src/symlink_route.dart

10 lines
273 B
Dart
Raw Normal View History

2016-11-25 23:22:33 +00:00
part of angel_route.src.router;
/// Placeholder [Route] to serve as a symbolic link
/// to a mounted [Router].
2018-08-20 18:59:51 +00:00
class SymlinkRoute<T> extends Route<T> {
final Router<T> router;
2018-08-20 19:34:00 +00:00
SymlinkRoute(String path, this.router)
: super(path, method: null, handlers: null);
2016-11-25 23:22:33 +00:00
}