diff options
Diffstat (limited to 'examples/fc/main.go')
-rw-r--r-- | examples/fc/main.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/fc/main.go b/examples/fc/main.go new file mode 100644 index 0000000..f336ab5 --- /dev/null +++ b/examples/fc/main.go @@ -0,0 +1,14 @@ +package main + +import ( + "os" + "github.com/Determinant/coreth/cmd/geth" +) + +func checkError(err error) { + if err != nil { panic(err) } +} + +func main() { + geth.App.Run(os.Args) +} |