8 lines
121 B
Go
8 lines
121 B
Go
package handlers
|
|
|
|
// POST is the HTTP POST method.
|
|
const POST = "POST"
|
|
|
|
// GET is the HTTP GET method.
|
|
const GET = "GET"
|