1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/clocks/clock.go
2018-04-19 09:29:49 -07:00

12 lines
114 B
Go

package clocks
import(
"time"
)
type Clock struct {
Label string
LocalTime time.Time
Timezone string
}