UNPKG
egg-kafka-cluster
Version:
latest (0.1.0)
0.1.0
provides egg bindings for the kafka.
github.com/uccu/egg-kafka-cluster
uccu/egg-kafka-cluster
egg-kafka-cluster
/
index.ts
14 lines
(10 loc)
•
200 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
Kafka
}
from
'lib/kafka'
;
declare
module
'egg'
{
interface
Application
{
MQ
: { [
k
:
string
]:
any
} }
interface
EggApplication
{
kafka
:
Kafka
; } }
export
*
from
'lib/kafka'
;