1
0
Fork 0

added the Middleware interface

the middleware interface helps with middleware that requires to have
backgroundtasks or open connections.
Dieser Commit ist enthalten in:
Sebastian Tobie 2021-02-27 00:36:11 +01:00
Ursprung c3305139d4
Commit dcabcdff25
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -47,3 +47,9 @@ func RequireUser(c *gin.Context) {
return
}
}
// Middleware is an type to Save data between executions and to provide help at the teardown.
type Middleware interface {
Gin(*gin.Context)
Teardown()
}