ipld-eth-server/main.go
Eric Meyer de2cb3b5cc Start introducing domain concepts
* Potential observers include a logger and/or an observer that writes to the DB
2017-10-23 12:08:59 -05:00

14 lines
248 B
Go

package main
import (
"fmt"
"github.com/8thlight/vulcanizedb/core"
)
func main() {
fmt.Println("Starting connection")
var blockchain core.Blockchain = core.NewGethBlockchain()
blockchain.RegisterObserver(core.BlockchainLoggingObserver{})
}