| 8 | from tculink.carwings_proto.autodj import ICONS |
| 9 | from tculink.carwings_proto.autodj.channels import get_info_channel_data |
| 10 | from tculink.coordinators import get_supported_commands |
| 11 | |
| 12 | |
| 13 | class TCUConfigurationSerializer(serializers.ModelSerializer): |
| 14 | last_updated = serializers.DateTimeField(read_only=True, default_timezone=pytz.utc) |
| 15 | class Meta: |
| 16 | model = TCUConfiguration |
| 17 | fields = '__all__' |