Skip to content

Commit

Permalink
Merge pull request #2 from hostari/declare-instance-variable-type
Browse files Browse the repository at this point in the history
Declare instance variable type
  • Loading branch information
xaviablaza authored May 28, 2024
2 parents 31afe9d + 872c0eb commit 318ae6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: bentonow_client
version: 1.0.0
version: 1.0.1

authors:
- paula4230 <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/bentonow/client.cr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Bentonow
class Client
BASE_URI = "app.bentonow.com"

def initialize(@publishable_key, @secret_key)
def initialize(@publishable_key : String, @secret_key : String)
end

def reset_client
Expand Down
2 changes: 1 addition & 1 deletion src/bentonow_client.cr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require "json"
require "http/client"

module BentonowClient
VERSION = "1.0.0"
VERSION = "1.0.1"
end

require "./bentonow/**"

0 comments on commit 318ae6d

Please sign in to comment.