CurrentDate returns today's date as a string in YYYY-MM-DD format.
()
| 184 | |
| 185 | // CurrentDate returns today's date as a string in YYYY-MM-DD format. |
| 186 | func CurrentDate() string { |
| 187 | return time.Now().UTC().Format("2006-01-02") |
| 188 | } |
no outgoing calls