Bootstrap Go module and action skeleton
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
a155c3ab7a
commit
b86a9dc9eb
4 changed files with 37 additions and 0 deletions
15
cmd/wails-release/main.go
Normal file
15
cmd/wails-release/main.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
func main() {
|
||||
if runtime.GOOS != "darwin" {
|
||||
fmt.Fprintln(os.Stderr, "wails-release: only macOS runners are supported")
|
||||
os.Exit(1)
|
||||
}
|
||||
fmt.Println("wails-release: stub")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue