platform/packages/file_service/example/main.dart

12 lines
326 B
Dart
Raw Normal View History

2018-07-12 19:58:30 +00:00
import 'package:angel_file_service/angel_file_service.dart';
import 'package:angel_framework/angel_framework.dart';
import 'package:file/local.dart';
configureServer(Angel app) async {
// Just like a normal service
app.use(
'/api/todos',
new JsonFileService(const LocalFileSystem().file('todos_db.json')),
);
}