mirror of
https://github.com/pockethost/pockethost.git
synced 2025-07-11 07:12:31 +00:00
8 lines
93 B
TypeScript
8 lines
93 B
TypeScript
export enum HttpMethods {
|
|
Get = 'GET',
|
|
}
|
|
|
|
export enum HttpResponseStatuses {
|
|
Ok = 200,
|
|
}
|