ai-css/tools/rpc_test.go
2026-01-28 22:42:06 +08:00

14 lines
187 B
Go

package tools
import (
"go-fly-muti/frpc"
"testing"
)
func TestClientRpc(t *testing.T) {
frpc.ClientRpc()
}
func TestServerRpc(t *testing.T) {
frpc.NewRpcServer("127.0.0.1:8082")
}