package main;
import java.io.IOException;
import java.net.URISyntaxException;
import mobileCheckiner.MobileCheckiner;
import org.apache.http.client.ClientProtocolException;
public class CheckinRunner
{
public static void main(String[] args) throws ClientProtocolException, URISyntaxException, IOException
{
MobileCheckiner checkiner = new MobileCheckiner(args[0], args[1]);
checkiner.checkin();
}
}