mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 00:30:26 +00:00
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
|
||
|
}
|