mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 10:57:34 +00:00
12 lines
167 B
Go
12 lines
167 B
Go
package aws
|
|
|
|
// ScimAPI exposes the SCIM API
|
|
type ScimAPI struct {
|
|
Client DBClient
|
|
}
|
|
|
|
func (a ScimAPI) init(client DBClient) ScimAPI {
|
|
a.Client = client
|
|
return a
|
|
}
|