10 lines
166 B
Go
10 lines
166 B
Go
|
package utils
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func addOauth(next http.Handler) http.Handler {
|
||
|
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
|
||
|
|
||
|
})
|
||
|
}
|