Skip to content

Commit fe1a2fc

Browse files
authored
Merge pull request #90 from Team-INSERT/refactor/structure
디렉터리 경로 변경
2 parents f7258b4 + 1412577 commit fe1a2fc

File tree

115 files changed

+30
-30
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+30
-30
lines changed

src/apis/httpClient/httpClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import axios, { AxiosInstance, AxiosRequestConfig } from "axios";
22
import { requestInterceptors, responseInterceptors } from "@/apis/interceptor";
3-
import { ERROR, TOKEN } from "@/constants/";
3+
import { ERROR, TOKEN } from "@/constants";
44
import Storage from "../storage";
55
import { refresh } from "../token";
66

src/apis/storage/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { StorageSettingKey, StorageTokenKey } from "@/types/";
1+
import { StorageSettingKey, StorageTokenKey } from "@/types";
22

33
type StorageKey = StorageSettingKey | StorageTokenKey;
44

src/apis/token/refresh.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TOKEN } from "@/constants/";
1+
import { TOKEN } from "@/constants";
22
import Storage from "@/apis/storage";
33
import axios from "axios";
44

src/app/applications/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import ApplicationsPage from "@/page/applications";
3+
import ApplicationsPage from "@/templates/applications";
44
import React from "react";
55

66
const Applications = () => {

src/app/bamboo/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import BambooPage from "@/page/bamboo";
3+
import BambooPage from "@/templates/bamboo";
44

55
const Bamboo = () => {
66
return <BambooPage />;

src/app/calender/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import CalenderPage from "@/page/calender";
3+
import CalenderPage from "@/templates/calender";
44

55
const Calender = () => {
66
return <CalenderPage />;

src/app/domitory/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import DomitoryPage from "@/page/domitory";
3+
import DomitoryPage from "@/templates/domitory";
44

55
const Domitory = () => {
66
return <DomitoryPage />;

src/app/meal/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import MealPage from "@/page/meal";
3+
import MealPage from "@/templates/meal";
44
import React from "react";
55

66
const Meal = () => {

src/app/meister/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import MeisterPage from "@/page/meister";
3+
import MeisterPage from "@/templates/meister";
44

55
const Meister = () => {
66
return <MeisterPage />;

src/app/oauth/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import OAuthPage from "@/page/oauth";
3+
import OAuthPage from "@/templates/oauth";
44

55
const OAuth = () => {
66
return <OAuthPage />;

0 commit comments

Comments
 (0)