mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-06 23:26:50 +00:00
12 lines
203 B
Python
12 lines
203 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .common import Asset
|
|
|
|
|
|
class Cloud(Asset):
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
class Meta:
|
|
verbose_name = _("Cloud")
|