scribe/spec/support/api_client.cr
Edward Loveall fcf3eb14d0
Initial app
2021-05-01 17:03:38 -04:00

7 lines
125 B
Crystal

class ApiClient < Lucky::BaseHTTPClient
def initialize
super
headers("Content-Type": "application/json")
end
end