Initial commit

This commit is contained in:
2022-03-06 01:02:55 +07:00
commit c06ae8317f
14 changed files with 700 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package date
import "time"
func Today() int {
return int(time.Now().Weekday())
}