mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-09 01:10:28 +00:00
14 lines
203 B
Go
14 lines
203 B
Go
//go:build android
|
|
// +build android
|
|
|
|
package mobile
|
|
|
|
import "log"
|
|
|
|
type MobileLogger struct{}
|
|
|
|
func (nsl MobileLogger) Write(p []byte) (n int, err error) {
|
|
log.Println(string(p))
|
|
return len(p), nil
|
|
}
|