mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 15:15:50 -06:00
11 lines
191 B
Dart
11 lines
191 B
Dart
|
|
|
|
import 'package:mock_server/mock_server.dart';
|
|
import 'package:paperless_mobile/main.dart' as ParentMain;
|
|
|
|
void main() async {
|
|
await LocalMockApiServer().start();
|
|
ParentMain.main();
|
|
}
|
|
|