7 lines
No EOL
275 B
Dart
7 lines
No EOL
275 B
Dart
import 'package:torchat/core_api/torchat_service.dart';
|
|
|
|
Future<void> main(List<String> args) async {
|
|
final service = TorChatService();
|
|
await service.startNode(); // Boots Tor, gRPC server, discovery loop
|
|
print('TorChat node running. Press Ctrl-C to exit.');
|
|
} |