syncStartupGroups method

Future<void> syncStartupGroups()

Implementation

Future<void> syncStartupGroups() async {
  for (final entry in config.groups.entries) {
    if (entry.value.syncOnStart) await syncGroup(entry.key);
  }
}