scribe/spec/support/api_client.cr

7 lines
125 B
Crystal
Raw Normal View History

2021-05-01 17:02:08 -04:00
class ApiClient < Lucky::BaseHTTPClient
def initialize
super
headers("Content-Type": "application/json")
end
end