mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 18:46:11 +00:00
7 lines
110 B
Go
7 lines
110 B
Go
//go:build !darwin
|
|
// +build !darwin
|
|
|
|
package thread
|
|
|
|
func Wrap(f func()) { f() }
|
|
func Main(f func()) { f() }
|