去除插开发者信息

This commit is contained in:
wojiaoyishang
2023-02-11 08:28:23 +08:00
parent b92c450be4
commit 7f7e142dc4
12 changed files with 81 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
from applications.extensions import ma
from marshmallow import fields, validate
class pluginSettingInSchema(ma.Schema):
key = fields.Str(required=True)
value = fields.Str(required=True)
class pluginSettingOutSchema(ma.Schema):
key = fields.Str(attribute="key")
value = fields.Str(rattribute="value")