[feat] mqtt 支持

This commit is contained in:
2024-04-23 09:49:28 +08:00
parent 0e21627c9a
commit 7d55b17630
2 changed files with 24 additions and 18 deletions
+2
View File
@@ -7,9 +7,11 @@ type Service interface {
RegGRpcs(items map[string]GRpc) error
RegJobs(items map[string]Job) error
RegCrons(items map[string]Cron) error
RegMqtts(items map[string]Mqtt) error
GetResListener(code string) (ResListener, bool)
GetAppController(code string) (Controller, bool)
GetAppGRpc(code string) (GRpc, bool)
GetAppJob(code string) (Job, bool)
GetAppCron(code string) (Cron, bool)
GetAppMqtt(code string) (Mqtt, bool)
}