blockchain_go/main.go

10 lines
102 B
Go
Raw Normal View History

2017-08-15 02:05:02 -05:00
package main
func main() {
bc := NewBlockchain()
2017-08-28 04:28:23 -05:00
defer bc.db.Close()
2017-08-15 02:20:34 -05:00
cli := CLI{bc}
2017-08-29 00:09:47 -05:00
cli.Run()
2017-08-15 02:05:02 -05:00
}