mirror of
https://github.com/postmannen/ctrl.git
synced 2024-12-14 12:37:31 +00:00
15 lines
459 B
Go
15 lines
459 B
Go
package ctrl
|
|
|
|
// jetstreamsConsumers will start up the netstream consumers.
|
|
// The consumer logic are put in the procFunc.
|
|
func jetstreamsConsumers(proc process, message Message, node string) ([]byte, error) {
|
|
|
|
return []byte{}, nil
|
|
}
|
|
|
|
// jetstreamPublishers will start up the netstream publishers.
|
|
// The publisher logic are put in the procFunc.
|
|
func jetstreamPublishers(proc process, message Message, node string) ([]byte, error) {
|
|
|
|
return []byte{}, nil
|
|
}
|