# Functions
CurrentDate returns the current date in YYYY-MM-DD format.
CurrentDateAddTime adds the time passed as a parameter and returns the date in YYYY-MM-DD format.
IsAfternoon returns true if "now" is between "12:00:00" and "17:59:59".
IsBetweenTimesBool returns true or false depending on the result of "IsNowBetweenTimes"
"start" and "end" must be in the hh:mm:ss format.
IsDawn returns true if "now" is between "01:01:00" and "05:59:59".
IsEvening returns true if "now" is between "18:00:00" and "23:59:59".
IsMidnight returns true if "now" is between "00:00:00" and "01:00:59".
IsMorning returns true if "now" is between "06:00:00" and "11:59:59".
IsNowBetweenTimes returns an error if date is not between times.
NowToHM returns the current time as a string with: "HH:MM:SS" as a format.
TimeToStr converts an int (time.Hour for example) into a string.