tools/utils/oauth.go
2022-03-23 00:39:53 +00:00

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) {
})
}