18 lines
260 B
Go
18 lines
260 B
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cloudwego/hertz/pkg/app"
|
|
)
|
|
|
|
var tempTokens = make(map[string]string)
|
|
|
|
func AcquireTokenHandler(c context.Context, ctx *app.RequestContext) {
|
|
|
|
}
|
|
|
|
func LoginHandler(c context.Context, ctx *app.RequestContext) {
|
|
|
|
}
|