platform/packages/file_service/example/main.dart
2024-10-12 18:45:27 -07:00

11 lines
342 B
Dart

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