mirror of
https://github.com/rancher/norman.git
synced 2025-07-16 16:32:39 +00:00
20 lines
286 B
Go
20 lines
286 B
Go
package clientbase
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/rancher/norman/types"
|
|
)
|
|
|
|
type APIBaseClient struct {
|
|
Ops *APIOperations
|
|
Opts *ClientOpts
|
|
Types map[string]types.Schema
|
|
}
|
|
|
|
type APIOperations struct {
|
|
Opts *ClientOpts
|
|
Types map[string]types.Schema
|
|
Client *http.Client
|
|
}
|