mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-07-09 06:08:09 +02:00
11 lines
276 B
Go
11 lines
276 B
Go
// mobile_deps.go
|
|
// This file ensures gomobile dependencies are not removed by go mod tidy.
|
|
// These packages are required by gomobile bind but not directly imported in code.
|
|
|
|
package gobackend
|
|
|
|
import (
|
|
// Required for gomobile bind to work
|
|
_ "golang.org/x/mobile/bind"
|
|
)
|