1
0
Fork 0
forked from forks/go-ethereum
go-ethereum-modded-tocallarg/rpc/api/api.go
2015-06-22 12:47:32 +02:00

10 lines
212 B
Go

package api
import (
"github.com/ethereum/go-ethereum/rpc/shared"
)
// Merge multiple API's to a single API instance
func Merge(apis ...shared.EthereumApi) shared.EthereumApi {
return newMergedApi(apis...)
}