Browse Source

s/TMSPClient/Client/g

pull/192/head
Jae Kwon 8 years ago
parent
commit
b987d38505
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      proxy/remote_app_conn.go

+ 3
- 3
proxy/remote_app_conn.go 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
}

Loading…
Cancel
Save