Skip to content

Commit

Permalink
Merge pull request #44 from vultr/lb-api
Browse files Browse the repository at this point in the history
Load Balancer feature branch
  • Loading branch information
ddymko authored Feb 21, 2020
2 parents 8b6c7ff + 94af024 commit e24c64f
Show file tree
Hide file tree
Showing 4 changed files with 963 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@
.DS_Store
.idea
.vscode

### Misc.
cmd
2 changes: 2 additions & 0 deletions govultr.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ type Client struct {
FirewallGroup FirewallGroupService
FirewallRule FireWallRuleService
ISO ISOService
LoadBalancer LoadBalancerService
Network NetworkService
ObjectStorage ObjectStorageService
OS OSService
Expand Down Expand Up @@ -123,6 +124,7 @@ func NewClient(httpClient *http.Client, key string) *Client {
client.FirewallGroup = &FireWallGroupServiceHandler{client}
client.FirewallRule = &FireWallRuleServiceHandler{client}
client.ISO = &ISOServiceHandler{client}
client.LoadBalancer = &LoadBalancerHandler{client}
client.Network = &NetworkServiceHandler{client}
client.ObjectStorage = &ObjectStorageServiceHandler{client}
client.OS = &OSServiceHandler{client}
Expand Down
Loading

0 comments on commit e24c64f

Please sign in to comment.