[style] Service 成员命名优化

This commit is contained in:
what 2023-04-24 15:09:08 +08:00
parent ff5f79eda2
commit 510e1567c5

View File

@ -1,6 +1,6 @@
package contracts
type Service interface {
GetResListener(code string) ResListener
GetAppControllerr(code string) Controller
GetResListener(code string) (ResListener, bool)
GetAppControllerr(code string) (Controller, bool)
}