rest-server/auth.go

10 lines
92 B
Go
Raw Normal View History

2015-08-14 11:17:57 +02:00
package main
import (
"net/http"
)
func Authorize(r *http.Request) bool {
return true
}