Skip to content

Commit

Permalink
add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor Gololicic committed Dec 12, 2023
1 parent 7d5c807 commit 55a8775
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions internal/evm/evm.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package evm

import (
"github.com/spf13/cobra"
)

var Cmd = &cobra.Command{
Use: "evm",
Short: "Interact with Flow EVM",
TraverseChildren: true,
}

func init() {
deployCommand.AddToParent(Cmd)
createCommand.AddToParent(Cmd)
getCommand.AddToParent(Cmd)
runCommand.AddToParent(Cmd)
}

type evmResult struct {
}

func (k *evmResult) JSON() any {
return nil
}

func (k *evmResult) String() string {
return ""
}

func (k *evmResult) Oneliner() string {
return ""
}

0 comments on commit 55a8775

Please sign in to comment.