Base is a base class for all backends to implement Note: the backends that does not support multiple requests should use SingleThread instead
| 16 | // Note: the backends that does not support multiple requests |
| 17 | // should use SingleThread instead |
| 18 | type Base struct { |
| 19 | } |
| 20 | |
| 21 | func (llm *Base) Locking() bool { |
| 22 | return false |
nothing calls this directly
no outgoing calls
no test coverage detected