ping method

bool ping()

Implementation

bool ping() {
  allSites.forEach((element) {
    element.ping();
  });
  return true;
}