Mike Schwörer
b9e9575b9b
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m18s
12 lines
199 B
Go
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
|
|
}
|