mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-09 23:20:26 +03:00
6d92edd405
* Move `src/mobile` into main repository * Update go.mod/go.sum * Move to `contrib`, separate mobile build script
14 lines
190 B
Go
14 lines
190 B
Go
// +build !android,!ios
|
|
|
|
package mobile
|
|
|
|
import "fmt"
|
|
|
|
type MobileLogger struct {
|
|
}
|
|
|
|
func (nsl MobileLogger) Write(p []byte) (n int, err error) {
|
|
fmt.Print(string(p))
|
|
return len(p), nil
|
|
}
|