verochka/date/date.go

8 lines
84 B
Go
Raw Normal View History

2022-03-05 18:02:55 +00:00
package date
import "time"
func Today() int {
return int(time.Now().Weekday())
}