Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
feat: bootstrap proxy cmd (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmyers authored Feb 2, 2023
1 parent b9a3958 commit d0c72af
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions cmd/proxy.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package cmd

import "github.com/spf13/cobra"

type ProxyCmdConfig struct {
}

func init() {
rootCmd.AddCommand(proxyCmd)
}

var proxyCmd = &cobra.Command{
Use: "proxy",
Short: "Run the InfraKit RPC proxy",
Run: proxyMain,
}

func proxyMain(cmd *cobra.Command, args []string) {
// Do Stuff Here
}

0 comments on commit d0c72af

Please sign in to comment.