Add reset tunnel option on ios

This commit is contained in:
problematicconsumer
2024-01-18 22:53:17 +03:30
parent 0d1a1147c6
commit 98fca5792a
12 changed files with 71 additions and 6 deletions

View File

@@ -224,6 +224,13 @@ class FFISingboxService with InfraLogger implements SingboxService {
);
}
@override
TaskEither<String, Unit> resetTunnel() {
throw UnimplementedError(
"reset tunnel function unavailable on platform",
);
}
@override
Stream<SingboxStatus> watchStatus() => _status;