apisix/t/apisix.luacov
YuanSheng Wang ad2b67ee81
feature: supported to added pluings to stream routes. (#513)
* feature: supported to added pluings to stream routes.
* feature: supported MQTT protocol.
2019-09-16 10:58:27 +08:00

20 lines
768 B
Plaintext
Vendored

return {
modules = {
["lua.*"] = "lua",
["lua/apisix/*"] = "apisix",
["lua/apisix/admin/*"] = "admin",
["lua/apisix/core/*"] = "core",
["lua/apisix/http/*"] = "http",
["lua/apisix/http/router/*"] = "http/router",
["lua/apisix/plugins/*"] = "plugins",
["lua/apisix/plugins/grpc-transcode/*"] = "plugins/grpc-transcode",
["lua/apisix/plugins/prometheus/*"] = "plugins/prometheus",
["lua/apisix/plugins/zipkin/*"] = "plugins/zipkin",
-- can not enable both at http and stream, will fix it later.
-- ["lua/apisix/stream/*"] = "stream",
-- ["lua/apisix/stream/plugins/*"] = "stream/plugins",
-- ["lua/apisix/stream/router/*"] = "stream/router",
},
}