mirror of
https://github.com/GSA/notifications-api.git
synced 2026-06-05 13:58:35 -04:00
6 lines
166 B
Python
6 lines
166 B
Python
from datetime import datetime
|
|
|
|
|
|
def daily_limit_cache_key(service_id):
|
|
return "{}-{}-{}".format(str(service_id), datetime.utcnow().strftime("%Y-%m-%d"), "count")
|