[add] initial commit

This commit is contained in:
2021-02-24 03:22:52 -05:00
commit c8c91b21d9
57 changed files with 2707 additions and 0 deletions

13
lib/enums/status_code.rb Normal file
View File

@@ -0,0 +1,13 @@
# frozen_string_literal: true
class StatusCode
include Ruby::Enum
define :HTTP_200
define :HTTP_201
define :HTTP_401
define :HTTP_403
define :HTTP_404
define :HTTP_405
define :UNKNOWN
end

0
lib/tasks/.keep Normal file
View File