mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-16 02:02:13 -05: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")
|