- Copy all used dart_framework files into lib/framework/ - Replace all package:dart_framework/ imports with package:oto_cli/framework/ - Add yaml, archive, ftpconnect as explicit direct dependencies - Remove dart_framework git dependency from pubspec.yaml Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
466 B
Dart
11 lines
466 B
Dart
import 'dart:typed_data';
|
|
|
|
import 'package:oto_cli/framework/platform/platform_base.dart';
|
|
|
|
LogWriter getLogWriter() => throw UnsupportedError('Cannot create a instance');
|
|
|
|
void initialize(String name, String appID) => throw UnsupportedError('Cannot execute method');
|
|
|
|
Future<String> getIPAddress(String domain) => throw UnsupportedError('Cannot execute method');
|
|
|
|
Future<Uint8List?> readFileByte(String filePath) => throw UnsupportedError('Cannot execute method');
|