webtools/cmds/clocks/models.go

19 lines
231 B
Go
Raw Normal View History

2025-09-25 22:13:29 +00:00
package main
import (
"syscall/js"
"time"
)
type clock struct {
name string
loc *time.Location
elements htmlElements
}
type htmlElements struct {
locationDiv js.Value
timeDiv js.Value
dateDiv js.Value
}