api.go 212 B

12345678910
  1. package api
  2. import (
  3. "github.com/ethereum/go-ethereum/rpc/shared"
  4. )
  5. // Merge multiple API's to a single API instance
  6. func Merge(apis ...shared.EthereumApi) shared.EthereumApi {
  7. return newMergedApi(apis...)
  8. }