8 lines
84 B
Go
8 lines
84 B
Go
package date
|
|
|
|
import "time"
|
|
|
|
func Today() int {
|
|
return int(time.Now().Weekday())
|
|
}
|