Skip to content

Commit

Permalink
Ageitando algumas coisas no back. - 3
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielSS187 committed Feb 14, 2023
1 parent 56f52cb commit 20dde63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion back-end/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "express-async-errors";
import { userRoutes } from "./routes/userRoutes";
import { todoRoutes } from "./routes/todoRoutes";
import { authMiddleware } from "./middlewares/authMiddleware";
import { CustomError } from "./errors/CustomError";
import { CustomError } from "./errors/customError";


app.use("/user", userRoutes);
Expand Down
2 changes: 1 addition & 1 deletion back-end/src/useCases/todoCases/TodoCases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
TDeleteRequest,
TGetAllTodos
} from "./validations";
import { ErrorTodo } from "../../errors/TodoErrors";
import { ErrorTodo } from "../../errors/todoErrors";

export class TodoCases {
constructor(
Expand Down
2 changes: 1 addition & 1 deletion back-end/src/useCases/userCases/UserCases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
signInRequestSchema
} from "./validations";

import { ErrorUser } from "../../errors/UserErrors";
import { ErrorUser } from "../../errors/userErrors";

export class UserCases {
constructor(
Expand Down

1 comment on commit 20dde63

@vercel
Copy link

@vercel vercel bot commented on 20dde63 Feb 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.