Skip to content

Commit 0454ec2

Browse files
chore: fix lint
1 parent eaa5fda commit 0454ec2

8 files changed

Lines changed: 16 additions & 16 deletions

File tree

cmd/cronjobs/cronjobs_create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414

1515
func newCronjobsCreateCommand() *cli.Command {
1616
return &cli.Command{
17-
Name: "create",
18-
Usage: "Create a new HTTP cron job for a project",
17+
Name: "create",
18+
Usage: "Create a new HTTP cron job for a project",
1919
Description: `Create a new HTTP cron job that fires on a cron schedule.
2020
2121
Examples:

cmd/cronjobs/cronjobs_delete.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212

1313
func newCronjobsDeleteCommand() *cli.Command {
1414
return &cli.Command{
15-
Name: "delete",
16-
Usage: "Delete a cron job",
15+
Name: "delete",
16+
Usage: "Delete a cron job",
1717
Description: `Permanently delete a cron job. This action cannot be undone.
1818
1919
Examples:

cmd/cronjobs/cronjobs_suspend.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111

1212
func newCronjobsSuspendCommand() *cli.Command {
1313
return &cli.Command{
14-
Name: "suspend",
15-
Usage: "Pause a cron job so it stops running on schedule",
14+
Name: "suspend",
15+
Usage: "Pause a cron job so it stops running on schedule",
1616
Flags: []cli.Flag{
1717
&cli.StringFlag{Name: "project", Usage: "Project ID"},
1818
&cli.StringFlag{Name: "cronjob", Usage: "Cron job ID"},

cmd/cronjobs/cronjobs_unsuspend.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111

1212
func newCronjobsUnsuspendCommand() *cli.Command {
1313
return &cli.Command{
14-
Name: "unsuspend",
15-
Usage: "Resume a suspended cron job",
14+
Name: "unsuspend",
15+
Usage: "Resume a suspended cron job",
1616
Flags: []cli.Flag{
1717
&cli.StringFlag{Name: "project", Usage: "Project ID"},
1818
&cli.StringFlag{Name: "cronjob", Usage: "Cron job ID"},

cmd/cronjobs/cronjobs_update.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313

1414
func newCronjobsUpdateCommand() *cli.Command {
1515
return &cli.Command{
16-
Name: "update",
17-
Usage: "Update a cron job's name, schedule, or HTTP settings",
16+
Name: "update",
17+
Usage: "Update a cron job's name, schedule, or HTTP settings",
1818
Description: `Update the name, schedule, or HTTP settings of an existing cron job.
1919
2020
Examples:

cmd/oauth/instructions.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
func newInstructionsCommand() *cli.Command {
88
return &cli.Command{
9-
Name: "instructions",
10-
Usage: "Show setup instructions for an OAuth client",
9+
Name: "instructions",
10+
Usage: "Show setup instructions for an OAuth client",
1111
Description: "Shows the client details you need after registration, including redirect URIs,\n" +
1212
"whether the client is public, and the user info endpoint.",
1313
Flags: []cli.Flag{

cmd/users/oauth_consents_revoke.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111

1212
func newOAuthConsentsRevokeCommand() *cli.Command {
1313
return &cli.Command{
14-
Name: "revoke",
15-
Usage: "Revoke an OAuth app consent",
14+
Name: "revoke",
15+
Usage: "Revoke an OAuth app consent",
1616
Description: "Revokes all tokens and consent granted to an OAuth client.\n\n" +
1717
" To find the client ID, run:\n" +
1818
" createos me oauth-consents list",

cmd/vms/vms_terminate.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212

1313
func newVMTerminateCommand() *cli.Command {
1414
return &cli.Command{
15-
Name: "terminate",
16-
Usage: "Permanently destroy a VM terminal instance",
15+
Name: "terminate",
16+
Usage: "Permanently destroy a VM terminal instance",
1717
Description: "Permanently destroys a VM and all its data. This action cannot be undone.\n\n" +
1818
" To find your VM ID, run:\n" +
1919
" createos vms list",

0 commit comments

Comments
 (0)