mirror of
https://gitee.com/energye/energy.git
synced 2024-12-05 21:28:17 +08:00
12 lines
260 B
Go
12 lines
260 B
Go
//go:build darwin
|
|
|
|
package touchbar
|
|
|
|
import (
|
|
"github.com/energye/energy/v2/pkgs/touchbar/internal/darwin"
|
|
)
|
|
|
|
// New allows to create a new Touch Bar for this application
|
|
// Note: only one Touch Bar can be active at a given time.
|
|
var New = darwin.NewTouchBar
|