8da763ec2f
- Fixed issue with webhooks
10 lines
183 B
Go
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
|
|
}
|