Move parser out to on demand (maybe move to on-startup, or on schedule, later)

This commit is contained in:
2025-10-10 12:47:47 +01:00
parent 029aea7f0c
commit 7c827975ae
7 changed files with 215 additions and 360 deletions

View File

@@ -1,7 +1,7 @@
'use client';
import { useState } from 'react';
import { Register, RegisterAccess, Note } from './types';
import { Register, RegisterAccess, Note } from '@/utils/parser';
import { Form, Container, Row, Table, OverlayTrigger, Tooltip } from 'react-bootstrap';
import RegisterDetail from "@/app/registers/RegisterDetail";