mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08:00
11 lines
99 B
Go
11 lines
99 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func Authorize(r *http.Request) bool {
|
|
return true
|
|
}
|