device_mobile.go 100 B

12345678
  1. //go:build mobile
  2. // +build mobile
  3. package test
  4. func (d *device) IsMobile() bool {
  5. return true
  6. }