Move plugins to go-plugins

This commit is contained in:
Asim
2015-11-25 00:17:15 +00:00
parent 469b12ecea
commit 04e07f4b39
18 changed files with 11 additions and 2007 deletions

View File

@@ -12,6 +12,10 @@ import (
"sync"
)
type buffer struct {
io.ReadWriter
}
type httpTransport struct{}
type httpTransportClient struct {
@@ -33,6 +37,10 @@ type httpTransportListener struct {
listener net.Listener
}
func (b *buffer) Close() error {
return nil
}
func (h *httpTransportClient) Send(m *Message) error {
header := make(http.Header)