goext/ginext/session.go
Mike Schwörer b9e9575b9b
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m18s
v0.0.378
2024-01-16 15:04:10 +01:00

12 lines
199 B
Go

package ginext
import (
"context"
"github.com/gin-gonic/gin"
)
type SessionObject interface {
Init(g *gin.Context, ctx *AppContext) error
Finish(ctx context.Context, resp HTTPResponse) error
}