storj/cmd/uplinkng/cmd_access_revoke.go

17 lines
300 B
Go
Raw Normal View History

// 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(params clingy.Parameters) {
}
func (c *cmdAccessRevoke) Execute(ctx clingy.Context) error {
return nil
}