From c8d0bbb5b54f5cec3ebb245f9a21d8a94b3bd944 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Thu, 15 Jan 2026 15:53:17 +0530 Subject: Add initial project structure with Go Fiber framework and environment configuration --- types/http.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 types/http.go (limited to 'types') diff --git a/types/http.go b/types/http.go new file mode 100644 index 0000000..bc85d99 --- /dev/null +++ b/types/http.go @@ -0,0 +1,13 @@ +package types + +type HTTPMethod string + +const ( + GET HTTPMethod = "GET" + POST HTTPMethod = "POST" + PUT HTTPMethod = "PUT" + PATCH HTTPMethod = "PATCH" + DELETE HTTPMethod = "DELETE" + OPTIONS HTTPMethod = "OPTIONS" + HEAD HTTPMethod = "HEAD" +) -- cgit v1.2.3