feat: implementing server framework
This commit is contained in:
6
server/StoccaTreRequest.ts
Normal file
6
server/StoccaTreRequest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export type HttpMethod = "POST" | "GET" | "PUT" | "DELETE";
|
||||
|
||||
export default interface StoccaTreRequest {
|
||||
method: HttpMethod,
|
||||
route: string,
|
||||
}
|
||||
Reference in New Issue
Block a user