n-issue-opened"> Issues 0 Pull Requests 0 Commits 107 Releases 0

No Description

Brightcells: 102152ca4a add api lensman_photo_bought & modify api wx_order_create_api and adjust return field 10 years ago
..
migrations 102152ca4a add api lensman_photo_bought & modify api wx_order_create_api and adjust return field 10 years ago
__init__.py 7a17d0fb90 add api wxpay & add redis relative 10 years ago
admin.py 7a17d0fb90 add api wxpay & add redis relative 10 years ago
models.py 102152ca4a add api lensman_photo_bought & modify api wx_order_create_api and adjust return field 10 years ago
tests.py 7a17d0fb90 add api wxpay & add redis relative 10 years ago
views.py 102152ca4a add api lensman_photo_bought & modify api wx_order_create_api and adjust return field 10 years ago
kodo - Gogs: Go Git Service

Nenhuma Descrição

rpatch.py 718B

    # -*- coding: utf-8 -*- from kodo.basemodels import PlatformMixin from utils.redis.connect import r from utils.redis.rkeys import APP_PATCH_INFO def set_app_patch_info(apppatch): """ 设置 APP 补丁信息 """ r.setjson(APP_PATCH_INFO % (apppatch.platform, apppatch.version, apppatch.src), apppatch.data) def del_app_patch_info(apppatch): """ 删除 APP 补丁信息 """ r.delete(APP_PATCH_INFO % (apppatch.platform, apppatch.version, apppatch.src)) def get_app_patch_info(platform, version, src): """ 获取 APP 补丁信息 """ platform = platform if isinstance(platform, int) else PlatformMixin.Platforms.get(platform) return r.getjson(APP_PATCH_INFO % (platform, version, src))