storj/cmd/uplinkng/cmd_access_revoke.go
Jeff Wendling f474bb6179 cmd/uplinkng: update for breaking clingy changes
clingy changed some and this is just fixes for that

Change-Id: I729aed6329fe0988fcb9b4407f16966a753b3204
2021-07-06 17:26:51 -04:00

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