14 lines
205 B
Go
14 lines
205 B
Go
|
package ipc
|
||
|
|
||
|
import "git.loafle.net/commons_go/rpc"
|
||
|
|
||
|
type IPCAdapter struct {
|
||
|
registry rpc.Registry
|
||
|
}
|
||
|
|
||
|
func NewAdapter(registry rpc.Registry) *IPCAdapter {
|
||
|
return &IPCAdapter{
|
||
|
registry: registry,
|
||
|
}
|
||
|
}
|