feat: initial commit
This commit is contained in:
9
pkg/wails3kit/updates/bootstrap/BUILD.bazel
Normal file
9
pkg/wails3kit/updates/bootstrap/BUILD.bazel
Normal file
@@ -0,0 +1,9 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "bootstrap",
|
||||
srcs = ["bootstrap.go"],
|
||||
importpath = "github.com/Eriyc/rules_wails/pkg/wails3kit/updates/bootstrap",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//pkg/wails3kit/updates/platform"],
|
||||
)
|
||||
11
pkg/wails3kit/updates/bootstrap/bootstrap.go
Normal file
11
pkg/wails3kit/updates/bootstrap/bootstrap.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package bootstrap
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/Eriyc/rules_wails/pkg/wails3kit/updates/platform"
|
||||
)
|
||||
|
||||
func MaybeRun() (bool, error) {
|
||||
return platform.MaybeRun(os.Args)
|
||||
}
|
||||
Reference in New Issue
Block a user