Skip to content

Commit

Permalink
エラーログパーサを移動 #4
Browse files Browse the repository at this point in the history
  • Loading branch information
yuta2k committed Jun 26, 2024
1 parent 8a9b668 commit f8e5a47
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ts_err_parser/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { TsErrInfo } from '@/models/TsErrInfo';
import TsErrParserUnsupportedFileError from '@/models/TsErrParserUnsupportedFileError';
import AbstractTsErrParser from './AbstractTsErrParser';
import EdcbErrParser from './EdcbErrParser';
import Multi2DecTxtParser from './Multi2DecTxtParser';
import EpgStationDropLogParser from './EpgStationDropLogParser';
import AbstractTsErrParser from './parser/AbstractTsErrParser';
import EdcbErrParser from './parser/EdcbErrParser';
import Multi2DecTxtParser from './parser/Multi2DecTxtParser';
import EpgStationDropLogParser from './parser/EpgStationDropLogParser';

const PARSERS = [EdcbErrParser, Multi2DecTxtParser, EpgStationDropLogParser];
const parsers = PARSERS.map((Parser) => new Parser() as AbstractTsErrParser);
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f8e5a47

Please sign in to comment.