Create time Package for Shared/timeutil, mclock and slotutil (#9594)

* add time pkg

* Go fmt
This commit is contained in:
terence tsao
2021-09-14 17:09:04 -07:00
committed by GitHub
parent 77de467250
commit 3e71997290
115 changed files with 322 additions and 320 deletions

8
time/BUILD.bazel Normal file
View File

@@ -0,0 +1,8 @@
load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["utils.go"],
importpath = "github.com/prysmaticlabs/prysm/time",
visibility = ["//visibility:public"],
)