Some checks are pending
Security / Security check (push) Waiting to run
The hub renamed its gRPC package fai.v1 -> chain.v1 (proto dir proto/fai/v1 -> proto/chain/v1). Move the generated stubs to generated/chain/v1 and rewrite the wire package + service paths (/fai.v1.Hub/* -> /chain.v1.Hub/*) so the client talks to the renamed hub. Pure package rename — no message/field changes. HubClient public API is unchanged, so dependents need no edits. dart analyze: clean. Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
13 lines
496 B
Dart
13 lines
496 B
Dart
/// gRPC client for the Ch∆In hub.
|
|
///
|
|
/// Provides a typed Dart wrapper around the hub's gRPC services
|
|
/// (Hub, HubAdmin) defined in `fai/chain`'s `proto/chain/v1/`
|
|
/// directory. Used by F∆I Studio and any Tier-3 Dart/Flutter
|
|
/// app (DigiScout, J∆I, Scout, …) that wants to talk to a hub.
|
|
///
|
|
/// The generated protobuf bindings live under
|
|
/// `lib/src/generated/`. Re-run `tools/generate.sh` whenever the
|
|
/// platform's `.proto` files change.
|
|
library;
|
|
|
|
export 'src/hub_client.dart';
|