4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-07-02 02:06:18 +00:00
Files
yggdrasil-go/contrib/mobile/mobile_other.go
Neil Alexander 41d890bb64 Run goimports
2022-04-17 18:02:25 +01:00

15 lines
218 B
Go

//go:build !android && !ios
// +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
}