feat: initial commit
This commit is contained in:
24
pkg/wails3kit/updates/BUILD.bazel
Normal file
24
pkg/wails3kit/updates/BUILD.bazel
Normal file
@@ -0,0 +1,24 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "updates",
|
||||
srcs = [
|
||||
"controller.go",
|
||||
"downloader.go",
|
||||
"errors.go",
|
||||
"semver.go",
|
||||
"types.go",
|
||||
],
|
||||
importpath = "github.com/Eriyc/rules_wails/pkg/wails3kit/updates",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"@org_golang_x_mod//semver",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "updates_test",
|
||||
srcs = ["controller_test.go"],
|
||||
embed = [":updates"],
|
||||
deps = [],
|
||||
)
|
||||
Reference in New Issue
Block a user