5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-15 13:10:28 +00:00
yggdrasil-go/src/yggdrasil/mobile_android.go
2019-01-10 10:44:44 +00:00

13 lines
187 B
Go

// +build android
package yggdrasil
import "log"
type MobileLogger struct{}
func (nsl MobileLogger) Write(p []byte) (n int, err error) {
log.Println(string(p))
return len(p), nil
}