github.com/primecitizens/pcz/std@v0.2.1/time/time.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright 2023 The Prime Citizens 3 4 package time 5 6 type Time struct { 7 Sec int64 8 NSec int32 9 10 Loc *Location 11 }