s/TMSPClient/Client/g

This commit is contained in:
Jae Kwon 2016-02-21 23:56:46 -08:00
parent 5266b56f43
commit b987d38505
1 changed files with 3 additions and 3 deletions

View File

@ -8,16 +8,16 @@ import (
// the application in general is not meant to be interfaced
// with concurrent callers.
type remoteAppConn struct {
*tmspcli.TMSPClient
*tmspcli.Client
}
func NewRemoteAppConn(addr string) (*remoteAppConn, error) {
client, err := tmspcli.NewTMSPClient(addr)
client, err := tmspcli.NewClient(addr)
if err != nil {
return nil, err
}
appConn := &remoteAppConn{
TMSPClient: client,
Client: client,
}
return appConn, nil
}