platform/lib/src/symlink_route.dart

9 lines
267 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;
2017-11-27 02:21:19 +00:00
SymlinkRoute(String path, this.router) : super(path, method: null, handlers: null);
2016-11-25 23:22:33 +00:00
}