(path: string)
| 53 | } |
| 54 | |
| 55 | export const isRemotePath = (path: string) => { |
| 56 | return path.startsWith('https://') || path.startsWith('http://'); |
| 57 | } |
| 58 | |
| 59 | |
| 60 | export const loadConfig = async (configPath?: string): Promise<SourcebotConfig> => { |
no outgoing calls
no test coverage detected