17 lines
384 B
Go
17 lines
384 B
Go
package rest
|
|
|
|
// This package will contain the code for making outbound REST API calls
|
|
// to client's backend servers
|
|
|
|
// API is the struct type for the implmentations
|
|
type API struct {
|
|
Headers struct{}
|
|
QueryParams []struct{}
|
|
URI string
|
|
Cookies string
|
|
}
|
|
|
|
// Interface is the generic interface for all implementations of Rest API calls
|
|
type Interface interface {
|
|
}
|