feat: initial commit

This commit is contained in:
eric
2026-03-12 22:16:34 +01:00
parent 8555b02752
commit f13f4a9a69
155 changed files with 11988 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "wails",
srcs = ["service.go"],
importpath = "github.com/Eriyc/rules_wails/pkg/wails3kit/updates/wails",
visibility = ["//visibility:public"],
deps = [
"//pkg/wails3kit/updates",
"@com_github_wailsapp_wails_v3//pkg/application",
],
)
go_test(
name = "wails_test",
srcs = ["service_test.go"],
embed = [":wails"],
deps = [
"//pkg/wails3kit/updates",
"//pkg/wails3kit/updates/storage/file",
"@com_github_wailsapp_wails_v3//pkg/application",
],
)