1
0
mirror of https://github.com/rancher/norman.git synced 2025-07-16 16:32:39 +00:00
norman/clientbase/client.go
2017-11-10 21:46:30 -07:00

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
}