mirror of
https://github.com/foomo/soap.git
synced 2025-10-16 12:45:36 +00:00
14 lines
278 B
Go
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)) {
|
|
|
|
}
|