mirror of https://github.com/jumpserver/jumpserver
12 lines
233 B
Python
12 lines
233 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
from ..serializers import HostSerializer
|
||
|
from ..models import Gateway
|
||
|
|
||
|
__all__ = ['GatewaySerializer']
|
||
|
|
||
|
|
||
|
class GatewaySerializer(HostSerializer):
|
||
|
class Meta(HostSerializer.Meta):
|
||
|
model = Gateway
|