8e84218dbe
git-subtree-dir: packages/file_service git-subtree-mainline:998aa62303
git-subtree-split:8eeae3c286
11 lines
326 B
Dart
11 lines
326 B
Dart
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')),
|
|
);
|
|
}
|