Skip to content

Commit

Permalink
V0.11.0 dev (#18)
Browse files Browse the repository at this point in the history
* update Go version and deps

* use scope from library for drive labels

* Update CI actions

* fix some documentation urls

* update dependencies

* update version

* update GH action and go version
  • Loading branch information
hanneshayashi committed Oct 30, 2023
1 parent aa2793e commit a669917
Show file tree
Hide file tree
Showing 62 changed files with 150 additions and 144 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.1
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4.0.1
uses: actions/setup-go@v4.1.0
with:
go-version: 1.20.5
go-version: 1.21.3
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5.3.0
uses: crazy-max/ghaction-import-gpg@v6.0.0
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4.3.0
uses: goreleaser/goreleaser-action@v5.0.0
with:
version: latest
args: release --rm-dist
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarACLDeleteCmd = &cobra.Command{
Use: "delete",
Short: "Deletes an access control rule.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/delete`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/delete`,
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_delete_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var calendarACLDeleteBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch deletes ACL rules using a CSV file as input.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/delete`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/delete`,
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarACLGetCmd = &cobra.Command{
Use: "get",
Short: "Returns an access control rule.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/get`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/get`,
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_get_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarACLGetBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch gets ACL rules using a CSV file as input.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/get`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/get`,
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_insert.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarACLInsertCmd = &cobra.Command{
Use: "insert",
Short: "Creates an access control rule.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/insert`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/insert`,
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_insert_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarACLInsertBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch inserts ACL rules using a CSV file as input.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/insert`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/insert`,
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var calendarACLListCmd = &cobra.Command{
Use: "list",
Short: "Returns the rules in the access control list for the calendar.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/list`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/list`,
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_list_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarACLListBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch lists ACL rules using a CSV file as input.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/list`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/list`,
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarACLPatchCmd = &cobra.Command{
Use: "patch",
Short: "Updates an access control rule. This method supports patch semantics.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/patch`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/patch`,
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendaracl_patch_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarACLPatchBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch patches ACL rules using a CSV file as input.",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/acl/patch`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/acl/patch`,
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var calendarListsCmd = &cobra.Command{
Use: "calendarLists",
Short: "Manage entries in users' calendar list (Part of Calendar API)",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
err := cmd.Help()
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarListsDeleteCmd = &cobra.Command{
Use: "delete",
Short: "Removes a calendar from the user's calendar list.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/delete",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/delete",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_delete_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var calendarListsDeleteBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch deletes calendars from the user's calendar list using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/delete",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/delete",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarListsGetCmd = &cobra.Command{
Use: "get",
Short: "Returns a calendar from the user's calendar list.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/get",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/get",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_get_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarListsGetBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch returns calendars from the user's calendar list using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/get",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/get",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_insert.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarListsInsertCmd = &cobra.Command{
Use: "insert",
Short: "Inserts an existing calendar into the user's calendar list.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/insert",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/insert",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_insert_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarListsInsertBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch inserts existing calendar entries using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/insert",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/insert",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var calendarListsListCmd = &cobra.Command{
Use: "list",
Short: "Returns the calendars on the user's calendar list.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/list",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/list",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarListsPatchCmd = &cobra.Command{
Use: "patch",
Short: "Updates an existing calendar on the user's calendar list. This method supports patch semantics.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/patch",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/patch",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarlists_patch_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarListsPatchBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch patches existing calendar list entries using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendarList/patch",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendarList/patch",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarsCmd = &cobra.Command{
Use: "calendars",
Short: "Manage users' calendars (Part of Calendar API)",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
err := cmd.Help()
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_clear.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var calendarsClearCmd = &cobra.Command{
Use: "clear",
Short: `Clears a primary calendar.
This operation deletes all events associated with the primary calendar of an account.`,
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/clear",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/clear",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var calendarsDeleteCmd = &cobra.Command{
Use: "delete",
Short: `Deletes a secondary calendar.
Use calendars.clear for clearing all events on primary calendars.`,
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/delete",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/delete",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_delete_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var calendarsDeleteBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch deletes secondary calendars using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/delete",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/delete",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarsGetCmd = &cobra.Command{
Use: "get",
Short: `Returns metadata for a calendar.`,
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/get",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/get",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_get_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarsGetBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch gets secondary calendars using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/get",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/get",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_insert.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarsInsertCmd = &cobra.Command{
Use: "insert",
Short: `Creates a secondary calendar.`,
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/insert",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/insert",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_insert_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarsInsertBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch inserts secondary calendars using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/insert",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/insert",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarsPatchCmd = &cobra.Command{
Use: "patch",
Short: `Updates metadata for a calendar.`,
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/patch",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/patch",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendars_patch_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarsPatchBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch patches secondary calendars using a CSV file as input.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/calendars/patch",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/calendars/patch",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarsettings.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
var calendarSettingsCmd = &cobra.Command{
Use: "calendarSettings",
Short: "See users' calendar settings (Part of Calendar API)",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/settings",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/settings",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
err := cmd.Help()
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarsettings_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var calendarSettingsGetCmd = &cobra.Command{
Use: "get",
Short: "Returns a single user setting.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/settings/get",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/settings/get",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarsettings_get_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
var calendarSettingsGetBatchCmd = &cobra.Command{
Use: "batch",
Short: "Batch gets calendar settings using a CSV file as input",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/settings/get",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/settings/get",
Annotations: map[string]string{
"crescendoAttachToParent": "true",
},
Expand Down
2 changes: 1 addition & 1 deletion cmd/calendarsettings_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var calendarSettingsListCmd = &cobra.Command{
Use: "list",
Short: "Returns all user settings for the authenticated user.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/settings/list",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/settings/list",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/colors.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
var colorsCmd = &cobra.Command{
Use: "colors",
Short: "Show Calendar and Event color definitions (Part of Calendar API)",
Long: `Implements the API documented at https://developers.google.com/calendar/v3/reference/colors`,
Long: `Implements the API documented at https://developers.google.com/calendar/api/v3/reference/colors`,
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
err := cmd.Help()
Expand Down
2 changes: 1 addition & 1 deletion cmd/colors_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var colorsGetCmd = &cobra.Command{
Use: "get",
Short: "Returns the color definitions for calendars and events.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/colors/get",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/colors/get",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
2 changes: 1 addition & 1 deletion cmd/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var eventsCmd = &cobra.Command{
Short: "Manage events in users' calendars (Part of Calendar API)",
Long: `This API only works in the user's context. Set the subject to the user's
email address to use this API!
Implements the API documented at https://developers.google.com/calendar/v3/reference/events`,
Implements the API documented at https://developers.google.com/calendar/api/v3/reference/events`,
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
err := cmd.Help()
Expand Down
2 changes: 1 addition & 1 deletion cmd/events_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
var eventsDeleteCmd = &cobra.Command{
Use: "delete",
Short: "Deletes an event.",
Long: "Implements the API documented at https://developers.google.com/calendar/v3/reference/events/delete",
Long: "Implements the API documented at https://developers.google.com/calendar/api/v3/reference/events/delete",
DisableAutoGenTag: true,
Run: func(cmd *cobra.Command, _ []string) {
flags := gsmhelpers.FlagsToMap(cmd.Flags())
Expand Down
Loading

0 comments on commit a669917

Please sign in to comment.