go-ethereum/rpc/api/api.go

11 lines
212 B
Go
Raw Normal View History

2015-06-08 03:23:54 -05:00
package api
2015-06-09 03:59:44 -05:00
import (
"github.com/ethereum/go-ethereum/rpc/shared"
)
2015-06-08 03:23:54 -05:00
2015-06-08 05:43:58 -05:00
// Merge multiple API's to a single API instance
2015-06-22 05:47:32 -05:00
func Merge(apis ...shared.EthereumApi) shared.EthereumApi {
2015-06-08 05:43:58 -05:00
return newMergedApi(apis...)
}