10 lines
262 B
Python
10 lines
262 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "server",
|
||
|
srcs = ["server.go"],
|
||
|
importpath = "git.wntrmute.dev/kyle/kdhcp/server",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["@com_github_davecgh_go_spew//spew"],
|
||
|
)
|