mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-19 17:16:47 +00:00
12 lines
261 B
Python
12 lines
261 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .common import Asset
|
|
|
|
|
|
class Cloud(Asset):
|
|
cluster = models.CharField(max_length=4096, verbose_name=_("Cluster"))
|
|
|
|
def __str__(self):
|
|
return self.hostname
|