runDoctorCli function

Future<int> runDoctorCli(
  1. List<String> args
)

CLI adapter for fdb doctor.

Runs all 5 diagnostic checks in order, emitting one DOCTOR_CHECK=... line per check followed by a DOCTOR_SUMMARY=... line. Exit code is always 0.

Implementation

Future<int> runDoctorCli(List<String> args) => runCliAdapter(ArgParser(), args, _execute);