mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
10 lines
225 B
Python
10 lines
225 B
Python
from rest_framework import serializers
|
|
|
|
from startScan.models import ScannedHost, ScanHistory
|
|
|
|
|
|
class ScannedHostSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = ScannedHost
|
|
fields = '__all__'
|