resolveControllerLaunch function

ControllerLaunchCommand resolveControllerLaunch()

Implementation

ControllerLaunchCommand resolveControllerLaunch() {
  final localController = _findLocalControllerEntrypoint();
  if (localController != null) {
    return ControllerLaunchCommand(
      Platform.resolvedExecutable,
      [localController],
    );
  }

  return const ControllerLaunchCommand('fdb-controller', []);
}