mirror of
https://github.com/taigrr/wtf
synced 2026-03-27 13:42:21 -07:00
12 lines
114 B
Go
12 lines
114 B
Go
package clocks
|
|
|
|
import(
|
|
"time"
|
|
)
|
|
|
|
type Clock struct {
|
|
Label string
|
|
LocalTime time.Time
|
|
Timezone string
|
|
}
|