mirror of https://github.com/jumpserver/jumpserver
9 lines
162 B
Python
9 lines
162 B
Python
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
||
|
from .common import Asset
|
||
|
|
||
|
|
||
|
class Custom(Asset):
|
||
|
class Meta:
|
||
|
verbose_name = _("Custom asset")
|