mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
221 B
Go
12 lines
221 B
Go
3 years ago
|
package auth
|
||
|
|
||
|
import (
|
||
|
"github.com/veypi/OneBD"
|
||
|
"github.com/veypi/OneBD/rfc"
|
||
|
)
|
||
|
|
||
|
func Router(r OneBD.Router) {
|
||
|
r.Set("/", authP, rfc.MethodGet, rfc.MethodPost)
|
||
|
r.Set("/:id", authP, rfc.MethodPatch, rfc.MethodDelete)
|
||
|
}
|