summary refs log tree commit diff
path: root/handlers/portgate.go
blob: 9d4f3ef904b78afa6a227fd60c3788e2fd85f782 (plain)
1
2
3
4
5
6
7
8
9
10
package handlers

import "github.com/valyala/fasthttp"

// handlePortgateRequest handles all Portgate specific request for either showing Portgate
// specific pages or handling creation of authorization tokens.
func (h *RequestHandler) handlePortgateRequest(ctx *fasthttp.RequestCtx) {
	// TODO: Implement authentication, authorization
	_, _ = ctx.WriteString("Portgate request.")
}