(tailchatHost = defaultTailchatApiUrl)
| 198 | } |
| 199 | |
| 200 | function createTailchatClient(tailchatHost = defaultTailchatApiUrl) { |
| 201 | const tailchatClient = new TailchatClient( |
| 202 | tailchatHost, |
| 203 | tailchatAppId, |
| 204 | tailchatAppSecret |
| 205 | ); |
| 206 | |
| 207 | return tailchatClient; |
| 208 | } |
| 209 | |
| 210 | export function buildRouter( |
| 211 | app: Probot, |
no outgoing calls
no test coverage detected