tendermint/proxy/app_conn.go

10 lines
115 B
Go
Raw Normal View History

2015-12-01 20:12:01 -08:00
package proxy
import (
2016-01-25 14:34:08 -08:00
tmspcli "github.com/tendermint/tmsp/client"
2015-12-01 20:12:01 -08:00
)
type AppConn interface {
2016-03-24 10:42:05 -07:00
tmspcli.Client
2015-12-01 20:12:01 -08:00
}