Files
ipe/mocks/socket.go
T
Claudemiro 8da763ec2f Refactor to make the maintanance simpler
- Fixed issue with webhooks
2018-11-25 17:40:43 +01:00

10 lines
183 B
Go

package mocks
// MockSocket is a mock implementation of Socket
// used in the test suite
type MockSocket struct{}
func (s MockSocket) WriteJSON(i interface{}) error {
return nil
}