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

9 lines
253 B
Dart
Raw Normal View History

2023-12-24 01:52:57 +00:00
part of 'router.dart';
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;
2023-12-24 01:52:57 +00:00
SymlinkRoute(super.path, this.router) : super(method: 'GET', handlers: <T>[]);
2016-11-25 23:22:33 +00:00
}