perf: 添加 types

This commit is contained in:
ibuler
2022-04-06 18:14:51 +08:00
parent ce13b194a5
commit 1b9efff6c7
8 changed files with 174 additions and 5 deletions

View File

@@ -1,5 +1,9 @@
from django.utils.translation import gettext_lazy as _
from django.db import models
from .common import Asset
class RemoteApp(Asset):
pass
app_path = models.CharField(max_length=1024, verbose_name=_("App path"))
attrs = models.JSONField(default=dict, verbose_name=_('Attrs'))