y/View/23860708943852?lang=es-ES">Español Português do Brasil Polski български Italiano Website Go1.5.1 kodo - Gogs: Go Git Service

Nessuna descrizione

rshot.py 485B

    # -*- coding: utf-8 -*- from utils.redis.connect import r from utils.redis.rkeys import MEMBER_SHOT_DATA def update_member_shot_data(): from member.models import ShotTypeInfo shots_types = ShotTypeInfo.objects.filter(status=True).order_by('position', '-pk') shots_types = [st.data for st in shots_types] r.setjson(MEMBER_SHOT_DATA, shots_types) return shots_types def get_member_shot_data(): return r.getjson(MEMBER_SHOT_DATA) or update_member_shot_data()