mirror of
https://github.com/JustKato/drive-health.git
synced 2026-03-19 06:59:46 +02:00
12 lines
209 B
Go
12 lines
209 B
Go
|
|
package web
|
||
|
|
|
||
|
|
import "github.com/gin-gonic/gin"
|
||
|
|
|
||
|
|
func BasicAuthMiddleware(username, password string) gin.HandlerFunc {
|
||
|
|
authorized := gin.Accounts{
|
||
|
|
username: password,
|
||
|
|
}
|
||
|
|
|
||
|
|
return gin.BasicAuth(authorized)
|
||
|
|
}
|