mirror of
https://github.com/GithubOrgProjectPiza/server.git
synced 2026-09-05 07:36:02 +02:00
Correct formatting
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import express, { Request, Response } from "express";
|
||||
import express from "express";
|
||||
import { addOrder, deleteOrder, getOrder, updateOrder } from "../controller/orders.controller";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
import express, { Request, Response } from "express";
|
||||
import { addOrganization, deleteOrganization, getOrganization, updateOrganization } from "../controller/organisations.controller";
|
||||
import express from "express";
|
||||
import {
|
||||
addOrganization,
|
||||
deleteOrganization,
|
||||
getOrganization,
|
||||
updateOrganization,
|
||||
} from "../controller/organisations.controller";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import express, { Request, Response } from "express";
|
||||
import { addPizza, deletePizza, getPizza, updatePizza } from "..///controller/pizzas.controller";
|
||||
import express from "express";
|
||||
import { addPizza, deletePizza, getPizza, updatePizza } from "../controller/pizzas.controller";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import express, { Request, Response } from "express";
|
||||
import express from "express";
|
||||
import { addRestaurant, deleteRestaurant, getRestaurant, updateRestaurant } from "../controller/restaurants.controller";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import express, { Request, Response } from "express";
|
||||
import express from "express";
|
||||
import { sayHello } from "../controller/testcontroller.controller";
|
||||
|
||||
export const router = express.Router();
|
||||
|
||||
Reference in New Issue
Block a user