mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
11 lines
128 B
Go
11 lines
128 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/ethereum/go-ethereum/internal/cli"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(cli.Run(os.Args[1:]))
|
|
}
|