a1bf9ab6de
Change-Id: I764618cc60c46882955e9b08b72b3c162aa4929f
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
|
|
}
|