This file contains 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 strict'; | |
const { createSession, closeSession } = require('sabre-soap'); | |
const sabreCertUrl = 'https://sws3-crt.cert.sabre.com/'; | |
const credentials = { | |
username: 'your_username', | |
password: 'your_password', | |
pcc: 'your_pseudocity_code', |
This file contains 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
(def views | |
{:some-view SomeView | |
:another-view AnotherView}) | |
(def factories | |
(map om/factory (vals views))) | |
(defui Router | |
static om/Ident | |
(ident [this {:keys [route]}] |
This file contains 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
type GitAtomic | |
val::Clong | |
function GitAtomic() | |
new(zero(Clong)) | |
end | |
end | |
type GitRefcount | |
refcount_val::Clong | |
owner::Ptr{Void} |