-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove all method signature in
keys/client
Signed-off-by: gfanton <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,2 @@ | ||
//go:build deprecated | ||
|
||
// Deprecated: Please use 'gno.land/pkg/keycli' | ||
package client | ||
|
||
import "github.com/gnolang/gno/tm2/pkg/commands" | ||
|
||
// Deprecated: NewRootCmd is deprecated and has been moved in | ||
// `gno.land/pkg/keycli`. Please update your code to use the new package. This | ||
// function now only serves as a placeholder and will panic if called to | ||
// encourage migration. | ||
func NewRootCmd(io commands.IO) *commands.Command { | ||
panic("NewRootCmd: has been deprecated, use `gno.land/pkg/keycli` instead") | ||
} | ||
|
||
// Deprecated: NewRootCmdWithBaseConfig as has been moved in | ||
// `gno.land/pkg/keycli`. Please update your code to use the new package. This | ||
// function now only serves as a placeholder and will panic if called to | ||
// encourage migration. | ||
func NewRootCmdWithBaseConfig(io commands.IO, cfg interface{}) *commands.Command { | ||
panic("NewRootCmdWithBaseConfig: has been deprecated, use `gno.land/pkg/keycli` instead") | ||
} |