scribe/spec/support/api_client.cr

7 lines
125 B
Crystal
Raw Normal View History

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