mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 17:56:25 +02:00
18 lines
286 B
TypeScript
18 lines
286 B
TypeScript
|
|
// Connector sources
|
||
|
|
export const connectorSourcesMenu = [
|
||
|
|
{
|
||
|
|
id: 1,
|
||
|
|
name: "Crawled URL",
|
||
|
|
type: "CRAWLED_URL",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 2,
|
||
|
|
name: "File",
|
||
|
|
type: "FILE",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 3,
|
||
|
|
name: "Extension",
|
||
|
|
type: "EXTENSION",
|
||
|
|
},
|
||
|
|
];
|