tools/utils/oauth.go

10 lines
166 B
Go
Raw Normal View History

2022-03-23 00:39:53 +00:00
package utils
import "net/http"
func addOauth(next http.Handler) http.Handler {
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
})
}