aboutsummaryrefslogtreecommitdiff
path: root/examples/fc/main.go
blob: d6b224c08cd59382b203e0d8c03dee0e45884bd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
    "os"
    "github.com/ava-labs/coreth/cmd/geth"
)

func checkError(err error) {
    if err != nil { panic(err) }
}

func main() {
    geth.App.Run(os.Args)
}