verochka/date/date.go

12 lines
186 B
Go
Raw Permalink Normal View History

2022-03-05 18:02:55 +00:00
package date
import "time"
func Today() int {
2022-09-04 12:54:04 +00:00
location, err := time.LoadLocation("Asia/Novosibirsk")
if err != nil {
panic(err)
}
return int(time.Now().In(location).Weekday())
2022-03-05 18:02:55 +00:00
}