chain-client-sdk-dart/example/chain_client_sdk_example.dart
flemming-it 14c8f38f36
Some checks failed
Security / Security check (push) Failing after 2s
refactor: rename package fai_client_sdk -> chain_client_sdk
The SDK belongs to the Ch∆In product, not the F∆I vendor namespace
(a future Brain client SDK would otherwise collide). Rename the Dart
package, entry library, test + example files. Also drop a private
project name from a doc comment. dart analyze: clean.

Dependents must update their dependency name + package: imports.

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
2026-06-16 17:39:12 +02:00

18 lines
493 B
Dart

// Example: connect to a locally-running F∆I hub.
//
// Run with `dart run example/chain_client_sdk_example.dart`.
import 'package:chain_client_sdk/chain_client_sdk.dart';
Future<void> main() async {
final client = HubClient(
endpoint: const HubEndpoint(host: '127.0.0.1', port: 50051),
);
// ignore: avoid_print
print('would connect to ${client.endpoint}');
// ignore: avoid_print
print('(SDK is a stub today; live RPC arrives with codegen)');
await client.close();
}