from slowapi import Limiter
from slowapi.util import get_remote_address

# Satu instance global, dipakai di main.py dan routes
limiter = Limiter(key_func=get_remote_address)
