Update searxng.ts

This commit is contained in:
ItzCrazyKns
2025-12-30 22:16:06 +05:30
parent a98f0df83f
commit 23b903db9a

View File

@@ -1,4 +1,3 @@
import axios from 'axios';
import { getSearxngURL } from './config/serverRegistry';
interface SearxngSearchOptions {
@@ -44,6 +43,6 @@ export const searchSearxng = async (
const results: SearxngSearchResult[] = data.results;
const suggestions: string[] = data.suggestions;
return { results, suggestions };
};