Skip to content

Commit

Permalink
fix(object): disable command in console
Browse files Browse the repository at this point in the history
  • Loading branch information
Laure-di committed Oct 1, 2024
1 parent 8606d82 commit 829c8e8
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions internal/namespaces/object/v1/custom_disabled.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
//go:build !(darwin || linux || windows)

package object

import "github.com/scaleway/scaleway-cli/v2/core"

func objectRoot() *core.Command {

Check failure on line 7 in internal/namespaces/object/v1/custom_disabled.go

View workflow job for this annotation

GitHub Actions / build-and-test (1.22.x, ubuntu-latest)

objectRoot redeclared in this block
return nil
}

func objectConfig() *core.Command {

Check failure on line 11 in internal/namespaces/object/v1/custom_disabled.go

View workflow job for this annotation

GitHub Actions / build-and-test (1.22.x, ubuntu-latest)

objectConfig redeclared in this block
return nil
}

func objectBucket() *core.Command {

Check failure on line 15 in internal/namespaces/object/v1/custom_disabled.go

View workflow job for this annotation

GitHub Actions / build-and-test (1.22.x, ubuntu-latest)

objectBucket redeclared in this block
return nil
}

func bucketCreateCommand() *core.Command {

Check failure on line 19 in internal/namespaces/object/v1/custom_disabled.go

View workflow job for this annotation

GitHub Actions / build-and-test (1.22.x, ubuntu-latest)

bucketCreateCommand redeclared in this block
return nil
}

func bucketDeleteCommand() *core.Command {

Check failure on line 23 in internal/namespaces/object/v1/custom_disabled.go

View workflow job for this annotation

GitHub Actions / build-and-test (1.22.x, ubuntu-latest)

bucketDeleteCommand redeclared in this block
return nil
}

func bucketListCommand() *core.Command {
return nil
}

func bucketGetCommand() *core.Command {
return nil
}

func bucketUpdateCommand() *core.Command {
return nil
}

func configGetCommand() *core.Command {
return nil
}

func configInstallCommand() *core.Command {
return nil
}

0 comments on commit 829c8e8

Please sign in to comment.