verochka/date/date.go

8 lines
84 B
Go

package date
import "time"
func Today() int {
return int(time.Now().Weekday())
}