platform/packages/route/lib/src/symlink_route.dart
thomashii@dukefirehawk.com d4794dbbd1 Upgraded lints to 3.0.0
2023-12-24 09:52:57 +08:00

8 lines
253 B
Dart

part of 'router.dart';
/// Placeholder [Route] to serve as a symbolic link
/// to a mounted [Router].
class SymlinkRoute<T> extends Route<T> {
final Router<T> router;
SymlinkRoute(super.path, this.router) : super(method: 'GET', handlers: <T>[]);
}