2022-03-28 15:45:51 +04:00

16 lines
309 B
Python

load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "TelegramApi",
module_name = "TelegramApi",
copts = [
"-warnings-as-errors",
],
srcs = glob([
"Sources/**/*.swift",
]),
visibility = [
"//visibility:public",
],
)