Remade frontend dashboard as flutter dashboard, still WIP

This commit is contained in:
Nate Anderson
2025-06-13 09:20:42 -06:00
parent 8ea06b12f7
commit b373a93f0e
207 changed files with 9869 additions and 46 deletions
@@ -0,0 +1,15 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'system_log.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
SystemLogResponse _$SystemLogResponseFromJson(Map<String, dynamic> json) =>
SystemLogResponse(
logs: (json['logs'] as List<dynamic>).map((e) => e as String).toList(),
);
Map<String, dynamic> _$SystemLogResponseToJson(SystemLogResponse instance) =>
<String, dynamic>{'logs': instance.logs};