Move to contrib, separate mobile build script

This commit is contained in:
Neil Alexander 2021-11-04 12:37:00 +00:00
parent 71b9409c44
commit 8f1b550030
7 changed files with 60 additions and 26 deletions

View file

@ -0,0 +1,13 @@
// +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
}