mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-09 05:07:04 +10:00
21 lines
389 B
Go
21 lines
389 B
Go
interface CPlugin extends BaseModel {
|
|
name?: string;
|
|
description?: string;
|
|
type?: string;
|
|
proto?: string;
|
|
active?: boolean;
|
|
endpoint?: string;
|
|
cmd?: string;
|
|
ui_components?: PluginUIComponent[];
|
|
ui_sidebar_navs?: MenuItem[];
|
|
}
|
|
|
|
interface PluginUIComponent {
|
|
name?: string;
|
|
title?: string;
|
|
src?: string;
|
|
type?: string;
|
|
path?: string;
|
|
parent_paths?: string[];
|
|
}
|