UNPKG
sails-application-generator
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
command line tool
github.com/praveen4554/sails-pluggable
praveen4554/sails-pluggable
sails-application-generator
/
sailsapp
/
api
/
services
/
kafkaTopics.ts
7 lines
•
164 B
text/typescript
View Raw
1
2
3
4
5
6
7
let
topics = [];
export
function
getTopic
(
topicName: string
) { topics.
push
({
topic
:topicName}); }
export
function
sendTopic
(
consumer: any
) {
return
topics; }