mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-04 15:08:59 +01:00
7f26b0cd13
* Add gobind builds for Yggdrasil demo * Massage client API a bit * Fix build * Fix gobind build * Fix gobind client API setup * Tweaks * Tweaks * Update sytest-whitelist, add comment * Default to sending push rules on initial sync
12 lines
177 B
Go
12 lines
177 B
Go
// +build !ios
|
|
|
|
package gobind
|
|
|
|
import "log"
|
|
|
|
type BindLogger struct{}
|
|
|
|
func (nsl BindLogger) Write(p []byte) (n int, err error) {
|
|
log.Println(string(p))
|
|
return len(p), nil
|
|
}
|