garm/auth/interfaces.go
Gabriel Adrian Samfira 0883fcd5cd Add some basic auth
2022-04-28 16:13:20 +00:00

8 lines
158 B
Go

package auth
import "net/http"
// Middleware defines an authentication middleware
type Middleware interface {
Middleware(next http.Handler) http.Handler
}