You are here

function gatsby_fastbuilds_drush_command in Gatsby Live Preview & Incremental Builds 8

Same name and namespace in other branches
  1. 2.0.x modules/gatsby_fastbuilds/gatsby_fastbuilds.drush.inc \gatsby_fastbuilds_drush_command()

Implements hook_drush_command().

File

modules/gatsby_fastbuilds/gatsby_fastbuilds.drush.inc, line 11
Contains gatsby_fastbuilds drush 8 commands.

Code

function gatsby_fastbuilds_drush_command() {
  $commands['gatsby-fastbuilds-delete'] = [
    'description' => 'Deletes all the Gatsby Fastbuilds Log entries.',
    'aliases' => [
      'gatsdel',
    ],
    'examples' => [
      'drush gatsdel' => 'Deletes all the Gatsby Fastbuilds Log entries.',
    ],
  ];
  return $commands;
}