(name, scope, ttl)
| 169 | }, |
| 170 | |
| 171 | async createToken(name, scope, ttl) { |
| 172 | const handle = await binding.get(scopedName(sessionId, name)); |
| 173 | return handle.createToken(scope, ttl); |
| 174 | }, |
| 175 | |
| 176 | async listTokens(name) { |
| 177 | const handle = await binding.get(scopedName(sessionId, name)); |
nothing calls this directly
no test coverage detected