Authentication is used when connecting a Client.
| 186 | |
| 187 | // Authentication is used when connecting a Client. |
| 188 | type Auth struct { |
| 189 | // Type can be "kiteKey", "token" or "sessionID" for now. |
| 190 | Type string `json:"type"` |
| 191 | Key string `json:"key"` |
| 192 | } |
| 193 | |
| 194 | // response is the type of the return value of Tell() and Go() methods. |
| 195 | type response struct { |
nothing calls this directly
no outgoing calls
no test coverage detected