package server
import (
"github.com/elimity-com/scim"
"net/http"
)
type handler struct{}
func (h handler) Create(r *http.Request, attributes scim.ResourceAttributes) (scim.Resource, error) {
panic("implement me")
}
func (h handler) Get(r *http.Request, id string) (scim.Resource, error) {
panic("implement me")
}
func (h handler) GetAll(r *http.Request, params scim.ListRequestParams) (scim.Page, error) {
panic("implement me")
}
func (h handler) Replace(r *http.Request, id string, attributes scim.ResourceAttributes) (scim.Resource, error) {
panic("implement me")
}
func (h handler) Delete(r *http.Request, id string) error {
panic("implement me")
}
func (h handler) Patch(r *http.Request, id string, request scim.PatchRequest) (scim.Resource, error) {
panic("implement me")
}
-
Notifications
You must be signed in to change notification settings - Fork 1
scim2/example-server
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Template SCIM v2 Server Implementation