17 lines
310 B
Go
17 lines
310 B
Go
|
// Copyright (C) 2021 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "github.com/zeebo/clingy"
|
||
|
|
||
|
type cmdAccessRevoke struct {
|
||
|
}
|
||
|
|
||
|
func (c *cmdAccessRevoke) Setup(a clingy.Arguments, f clingy.Flags) {
|
||
|
}
|
||
|
|
||
|
func (c *cmdAccessRevoke) Execute(ctx clingy.Context) error {
|
||
|
return nil
|
||
|
}
|