blob: fb9af7392ae094f6d90677f6e9aa5ba9537dbf41 [file] [log] [blame]
Lorenz Brune306d782021-09-01 13:01:06 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
Lorenz Brund13c1c62022-03-30 19:58:58 +02004 name = "time",
Lorenz Brune306d782021-09-01 13:01:06 +02005 srcs = ["time.go"],
6 importpath = "source.monogon.dev/metropolis/node/core/time",
7 visibility = ["//visibility:public"],
8 deps = [
Lorenz Brund13c1c62022-03-30 19:58:58 +02009 "//metropolis/node",
10 "//metropolis/pkg/fileargs",
11 "//metropolis/pkg/supervisor",
Lorenz Brune306d782021-09-01 13:01:06 +020012 ],
13)