1
0
Fork 0
forked from goffee/core
core/consts.go

18 lines
601 B
Go
Raw Permalink Normal View History

2024-09-12 18:13:16 -04:00
package core
const GET string = "get"
const POST string = "post"
const DELETE string = "delete"
const PATCH string = "patch"
const PUT string = "put"
const OPTIONS string = "options"
const HEAD string = "head"
const CONTENT_TYPE string = "content-Type"
const CONTENT_TYPE_HTML string = "text/html; charset=utf-8"
const CONTENT_TYPE_JSON string = "application/json"
const CONTENT_TYPE_TEXT string = "text/plain"
const CONTENT_TYPE_MULTIPART_FORM_DATA string = "multipart/form-data;"
const LOCALHOST string = "http://localhost"
const TEST_STR string = "Testing!"
const PRODUCTION string = "production"