- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
32 lines
977 B
JavaScript
32 lines
977 B
JavaScript
import Grid from './grid';
|
|
import Menu from './menu';
|
|
import Minimap from './minimap';
|
|
import Bundling from './bundling';
|
|
import Fisheye from './fisheye';
|
|
import ToolBar from './toolBar';
|
|
import Tooltip from './tooltip';
|
|
import TimeBar from './timeBar';
|
|
import ImageMinimap from './imageMinimap';
|
|
import EdgeFilterLens from './edgeFilterLens';
|
|
import SnapLine from './snapline';
|
|
import PluginBase from './base';
|
|
import Legend from './legend';
|
|
import Annotation from './annotation';
|
|
export { PluginBase, Menu, Grid, Minimap, Bundling, ToolBar, Tooltip, Fisheye, TimeBar, ImageMinimap, EdgeFilterLens, SnapLine, Legend, Annotation };
|
|
var Plugin = {
|
|
PluginBase: PluginBase,
|
|
Menu: Menu,
|
|
Grid: Grid,
|
|
Minimap: Minimap,
|
|
Bundling: Bundling,
|
|
ToolBar: ToolBar,
|
|
Tooltip: Tooltip,
|
|
Fisheye: Fisheye,
|
|
TimeBar: TimeBar,
|
|
ImageMinimap: ImageMinimap,
|
|
EdgeFilterLens: EdgeFilterLens,
|
|
SnapLine: SnapLine,
|
|
Legend: Legend,
|
|
Annotation: Annotation
|
|
};
|
|
export default Plugin; |