1
0
mirror of https://github.com/rancher/norman.git synced 2025-07-18 01:11:27 +00:00
norman/clientbase/client.go

20 lines
286 B
Go
Raw Normal View History

2017-11-11 04:44:02 +00:00
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
}