without_edgex.go 262 B

12345678910111213
  1. // +build !edgex
  2. package nodes
  3. import "github.com/emqx/kuiper/xstream/api"
  4. func getSource(t string) (api.Source, error) {
  5. return doGetSource(t)
  6. }
  7. func getSink(name string, action map[string]interface{}) (api.Sink, error) {
  8. return doGetSink(name, action)
  9. }