This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use GuzzleHttp\Client; | |
$client = new Client([ | |
'base_uri' => 'https://api.contactually.com', | |
'headers' => [ | |
'Accept': 'application/json', | |
'Authorization': 'Bearer AUTH_TOKEN_HERE' | |
], | |
]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CellLayout < MotionKit::Layout | |
include CommonStyles | |
def layout | |
root :cell do | |
add contentView, :content_view do | |
add(UIView, :container) { cell_content_layout } | |
end | |
end | |
end |
OlderNewer