v9.0.0
This commit is contained in:
16
pkg/cloudbroker/lb/lb.go
Normal file
16
pkg/cloudbroker/lb/lb.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// API to manage load balancer instance
|
||||
package lb
|
||||
|
||||
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/interfaces"
|
||||
|
||||
// Structure for creating request to load balancer
|
||||
type LB struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for load balancer
|
||||
func New(client interfaces.Caller) *LB {
|
||||
return &LB{
|
||||
client: client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user