platform/lib/src/http/angel_base.dart

20 lines
649 B
Dart
Raw Normal View History

library angel_framework.http.angel_base;
import 'dart:async';
2016-09-17 16:12:25 +00:00
import 'package:container/container.dart';
import 'routable.dart';
/// A function that asynchronously generates a view from the given path and data.
typedef Future<String> ViewGenerator(String path, [Map data]);
class AngelBase extends Routable {
2016-09-17 16:12:25 +00:00
Container _container = new Container();
/// A [Container] used to inject dependencies.
Container get container => _container;
/// A function that renders views.
///
/// Called by [ResponseContext]@`render`.
ViewGenerator viewGenerator = (String view,
[Map data]) async => "No view engine has been configured yet.";
}