Skip to content

Commit

Permalink
FulfillmentService was missing from the client (bold-commerce#114)
Browse files Browse the repository at this point in the history
Added FulfillmentService to client
  • Loading branch information
MarkSpruijt authored Aug 11, 2020
1 parent 5698c39 commit decc076
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions goshopify.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ type Client struct {
Customer CustomerService
CustomerAddress CustomerAddressService
Order OrderService
Fulfillment FulfillmentService
DraftOrder DraftOrderService
Shop ShopService
Webhook WebhookService
Expand Down Expand Up @@ -258,6 +259,7 @@ func NewClient(app App, shopName, token string, opts ...Option) *Client {
c.Customer = &CustomerServiceOp{client: c}
c.CustomerAddress = &CustomerAddressServiceOp{client: c}
c.Order = &OrderServiceOp{client: c}
c.Fulfillment = &FulfillmentServiceOp{client: c}
c.DraftOrder = &DraftOrderServiceOp{client: c}
c.Shop = &ShopServiceOp{client: c}
c.Webhook = &WebhookServiceOp{client: c}
Expand Down

0 comments on commit decc076

Please sign in to comment.