:10 CST">7 年之前 MultiEntryPlugin.js 11e3a9652a first 7 年之前 MultiModule.js 11e3a9652a first 7 年之前 MultiModuleFactory.js 11e3a9652a first 7 年之前 MultiStats.js 11e3a9652a first 7 年之前 MultiWatching.js 11e3a9652a first 7 年之前 NamedChunksPlugin.js 11e3a9652a first 7 年之前 NamedModulesPlugin.js 11e3a9652a first 7 年之前 NewWatchingPlugin.js 11e3a9652a first 7 年之前 NoEmitOnErrorsPlugin.js 11e3a9652a first 7 年之前 NoErrorsPlugin.js 11e3a9652a first 7 年之前 NodeStuffPlugin.js 11e3a9652a first 7 年之前 NormalModule.js 11e3a9652a first 7 年之前 NormalModuleFactory.js 11e3a9652a first 7 年之前 NormalModuleReplacementPlugin.js 11e3a9652a first 7 年之前 NullFactory.js 11e3a9652a first 7 年之前 OptionsApply.js 11e3a9652a first 7 年之前 OptionsDefaulter.js 11e3a9652a first 7 年之前 Parser.js 11e3a9652a first 7 年之前 ParserHelpers.js 11e3a9652a first 7 年之前 PrefetchPlugin.js 11e3a9652a first 7 年之前 ProgressPlugin.js 11e3a9652a first 7 年之前 ProvidePlugin.js 11e3a9652a first 7 年之前 RawModule.js 11e3a9652a first 7 年之前 RecordIdsPlugin.js 11e3a9652a first 7 年之前 RequestShortener.js 11e3a9652a first 7 年之前 RequireJsStuffPlugin.js 11e3a9652a first 7 年之前 RuleSet.js 11e3a9652a first 7 年之前 SetVarMainTemplatePlugin.js 11e3a9652a first 7 年之前 SingleEntryPlugin.js 11e3a9652a first 7 年之前 SizeFormatHelpers.js 11e3a9652a first 7 年之前 SourceMapDevToolModuleOptionsPlugin.js 11e3a9652a first 7 年之前 SourceMapDevToolPlugin.js 11e3a9652a first 7 年之前 Stats.js 11e3a9652a first 7 年之前 Template.js 11e3a9652a first 7 年之前 TemplatedPathPlugin.js 11e3a9652a first 7 年之前 UmdMainTemplatePlugin.js 11e3a9652a first 7 年之前 UnsupportedFeatureWarning.js 11e3a9652a first 7 年之前 UseStrictPlugin.js 11e3a9652a first 7 年之前 WarnCaseSensitiveModulesPlugin.js 11e3a9652a first 7 年之前 WatchIgnorePlugin.js 11e3a9652a first 7 年之前 WebpackError.js 11e3a9652a first 7 年之前 WebpackOptionsApply.js 11e3a9652a first 7 年之前 WebpackOptionsDefaulter.js 11e3a9652a first 7 年之前 WebpackOptionsValidationError.js 11e3a9652a first 7 年之前 compareLocations.js 11e3a9652a first 7 年之前 formatLocation.js 11e3a9652a first 7 年之前 prepareOptions.js 11e3a9652a first 7 年之前 removeAndDo.js 11e3a9652a first 7 年之前 validateSchema.js 11e3a9652a first 7 年之前 webpack.js 11e3a9652a first 7 年之前 webpack.web.js 11e3a9652a first 7 年之前 kodo - Gogs: Go Git Service

Brak opisu

rsettings.py 733B

    # -*- coding: utf-8 -*- from kodo.basemodels import PlatformMixin from utils.redis.connect import r from utils.redis.rkeys import APP_SETTINGS_INFO def set_app_settings_info(appset): """ 设置 APP 设置信息 """ r.setjson(APP_SETTINGS_INFO % (appset.platform, appset.channel, appset.version), appset.data) def del_app_settings_info(appset): """ 删除 APP 设置信息 """ r.delete(APP_SETTINGS_INFO % (appset.platform, appset.channel, appset.version)) def get_app_settings_info(platform, channel, version): """ 获取 APP 设置信息 """ platform = platform if isinstance(platform, int) else PlatformMixin.Platforms[platform] return r.getjson(APP_SETTINGS_INFO % (platform, channel, version))