github.com/erda-project/erda-infra@v1.0.9/providers/component-protocol/examples/components/all.go (about) 1 // Copyright (c) 2021 Terminus, Inc. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package components 16 17 import ( 18 // easy to import all common components 19 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/bubblegraph_demo/bubblegraph" 20 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/complexgraph_demo/complexgraph" 21 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/demo/demotable" 22 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/filter_demo/filter" 23 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/kanban_demo/kanban" 24 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/kv_demo/kv" 25 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/linegraph_demo/linegraph" 26 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/paralleldemo" 27 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/table_demo/table" 28 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/top_demo/top" 29 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/urlquery_demo/filter" 30 _ "github.com/erda-project/erda-infra/providers/component-protocol/examples/components/yet_another_demo/demotable" 31 )