()
| 176 | pass |
| 177 | |
| 178 | def hello(): |
| 179 | tid = next_id() |
| 180 | add_future(tid, { |
| 181 | 'onsuccess': lambda unused, params: server_version(params), |
| 182 | }) |
| 183 | return pb.ClientMsg(hi=pb.ClientHi(id=tid, user_agent=APP_NAME + "/" + APP_VERSION + " (" + |
| 184 | platform.system() + "/" + platform.release() + "); gRPC-python/" + LIB_VERSION, |
| 185 | ver=LIB_VERSION, lang="EN")) |
| 186 | |
| 187 | def login(cookie_file_name, scheme, secret): |
| 188 | tid = next_id() |
no test coverage detected
searching dependent graphs…