feat(rmi): support receive rmi connection (#5)

This commit is contained in:
Li4n0
2021-04-23 17:58:46 +08:00
committed by GitHub
parent 72c6150517
commit 5e24f9530d
25 changed files with 1101 additions and 20 deletions
+3 -1
View File
@@ -4,6 +4,7 @@ import (
"github.com/li4n0/revsuit/pkg/dns"
"github.com/li4n0/revsuit/pkg/mysql"
"github.com/li4n0/revsuit/pkg/rhttp"
"github.com/li4n0/revsuit/pkg/rmi"
)
type noticeConfig struct {
@@ -21,5 +22,6 @@ type Config struct {
Notice noticeConfig
rhttp.Config
DNS dns.Config
Mysql mysql.Config
MySQL mysql.Config
RMI rmi.Config
}