mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-15 03:11:50 +00:00
* Move `src/mobile` into main repository * Update go.mod/go.sum * Move to `contrib`, separate mobile build script
12 lines
184 B
Go
12 lines
184 B
Go
// +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
|
|
}
|