2021-03-31 16:56:34 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/zeebo/clingy"
|
|
|
|
|
|
|
|
type cmdAccessRevoke struct {
|
|
|
|
}
|
|
|
|
|
2021-05-25 00:11:50 +01:00
|
|
|
func (c *cmdAccessRevoke) Setup(params clingy.Parameters) {
|
2021-03-31 16:56:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmdAccessRevoke) Execute(ctx clingy.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|