getScailoClientForGoalsService function

GoalsServiceClient getScailoClientForGoalsService()

Get the client to access the Goals service

Implementation

GoalsServiceClient getScailoClientForGoalsService() {
  return GoalsServiceClient(
    getClientChannel(),
    options: CallOptions(
      metadata: {'auth_token': getAuthToken()},
      timeout: const Duration(seconds: 10),
    ),
  );
}