platform/packages/file_service/example/main.dart
2021-06-26 20:06:30 +08:00

11 lines
331 B
Dart

import 'package:angel3_file_service/angel3_file_service.dart';
import 'package:angel3_framework/angel3_framework.dart';
import 'package:file/local.dart';
void configureServer(Angel app) async {
// Just like a normal service
app.use(
'/api/todos',
JsonFileService(const LocalFileSystem().file('todos_db.json')),
);
}