device_other.go 103 B

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