soap/server.go
2016-01-20 16:49:34 +01:00

14 lines
278 B
Go

package soap
type Server struct {
}
func NewServer(addr string) *Server {
s := &Server{}
return s
}
func (s *Server) HandleOperation(operationName string, requestFactory func() interface{}, operationHandler func(request interface{}) (response interface{}, err error)) {
}