Skip to content

Commit

Permalink
move file to diffreant location
Browse files Browse the repository at this point in the history
  • Loading branch information
amerharb committed Nov 30, 2023
1 parent 7657a22 commit 5bcf41e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion webapp/src/app/api/Store.ts → webapp/src/Store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { flatten } from 'flat';
import fs from 'fs/promises';
import { LanguageNotFound } from '@/app/api/Errors';
import { LanguageNotFound } from '@/errors';
import { parse } from 'yaml';
import { envVarNotFound, logDebug } from '@/utils/util';
import { simpleGit, SimpleGit, SimpleGitOptions } from 'simple-git';
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/app/api/translations/[lang]/[msgId]/route.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { LanguageNotFound } from '@/app/api/Errors';
import { Store } from '@/app/api/Store';
import { LanguageNotFound } from '@/errors';
import { Store } from '@/Store';
import { NextRequest, NextResponse } from 'next/server';

export async function PUT(
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/app/api/translations/[lang]/route.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { LanguageNotFound } from '@/app/api/Errors';
import { Store } from '@/app/api/Store';
import { LanguageNotFound } from '@/errors';
import { Store } from '@/Store';
import { NextRequest, NextResponse } from 'next/server';

export async function GET(
Expand Down
File renamed without changes.

0 comments on commit 5bcf41e

Please sign in to comment.