mirror of
https://github.com/simon-ding/polaris.git
synced 2026-03-07 10:00:46 +08:00
17 lines
285 B
Dart
17 lines
285 B
Dart
import 'package:ui/ffi/lib_polaris_boot.dart';
|
|
|
|
LibPolarisBoot create() {
|
|
return LibpolarisBootBrowser();
|
|
}
|
|
|
|
class LibpolarisBootBrowser implements LibPolarisBoot {
|
|
@override
|
|
Future<int> start(String cfg) async{
|
|
return 0;
|
|
}
|
|
|
|
@override
|
|
Future<void> stop() async{
|
|
}
|
|
|
|
} |