mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 15:43:21 +00:00
9 lines
92 B
Go
9 lines
92 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func Authorize(r *http.Request) bool {
|
|
return true
|
|
}
|