mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 04:00:37 +00:00
6d92edd405
* Move `src/mobile` into main repository * Update go.mod/go.sum * Move to `contrib`, separate mobile build script
13 lines
184 B
Go
13 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
|
|
}
|