sources_without_edgex.go 282 B

12345678910111213141516
  1. // +build !edgex
  2. // +build !test
  3. package node
  4. import (
  5. "github.com/lf-edge/ekuiper/pkg/api"
  6. )
  7. func getSource(t string) (api.Source, error) {
  8. return doGetSource(t)
  9. }
  10. func getSink(name string, action map[string]interface{}) (api.Sink, error) {
  11. return doGetSink(name, action)
  12. }