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