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

10 lines
276 B
Dart
Raw Normal View History

2021-05-14 07:02:50 +00:00
part of angel3_route.src.router;
2016-11-25 23:22:33 +00:00
/// 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)
2021-04-03 05:50:52 +00:00
: super(path, method: 'GET', handlers: <T>[]);
2016-11-25 23:22:33 +00:00
}