Skip to content

Commit

Permalink
Create base canary command
Browse files Browse the repository at this point in the history
  • Loading branch information
pragmatic-zac committed Sep 10, 2024
1 parent b98230d commit efa339a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/cli/src/oclif/commands/canary.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const ZapierBaseCommand = require('../ZapierBaseCommand');

const { buildFlags } = require('../buildFlags');

class CanaryCommand extends ZapierBaseCommand {
async perform() {
console.log('Hello from canary!')
}
}

CanaryCommand.flags = buildFlags();
CanaryCommand.description =
'Canary traffic from one app version to another app version.';
CanaryCommand.skipValidInstallCheck = true;

module.exports = CanaryCommand;

0 comments on commit efa339a

Please sign in to comment.