| 1 | export const DEFAULT_API_BASE_URL = "http://127.0.0.1:19828" |
| 2 | |
| 3 | export interface LlmWikiApiClientOptions { |
| 4 | baseUrl?: string |
| 5 | token?: string |
| 6 | fetchImpl?: typeof fetch |
| 7 | } |
| 8 | |
| 9 | export interface ApiProject { |
| 10 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected