webtools/cmds/clocks/models.go
2025-09-26 08:13:29 +10:00

19 lines
231 B
Go

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
}