<?php

/**
 * @file
 * Install, update and uninstall functions for the seo_checklist module.
 */

/**
 * Implements hook_uninstall().
 */
function seo_checklist_uninstall() {
  \Drupal::configFactory()
    ->getEditable("checklistapi.progress.seo_checklist")
    ->delete();
}
