19 lines
231 B
Go
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
|
||
|
}
|