12345678910111213141516 |
- // +build !edgex
- // +build !test
- package node
- import (
- "github.com/lf-edge/ekuiper/pkg/api"
- )
- func getSource(t string) (api.Source, error) {
- return doGetSource(t)
- }
- func getSink(name string, action map[string]interface{}) (api.Sink, error) {
- return doGetSink(name, action)
- }
|