split Client/Server

Summary: The `Client` and `Server` code was in one file, which was messy. This splits it into two separate files.

Reviewed By: emilsjolander

Differential Revision: D8186932

fbshipit-source-id: faa79d7dccd867d69ccd1bccd43a2cf85314b1b3
This commit is contained in:
Daniel Büchele
2018-06-25 09:56:08 -07:00
committed by Facebook Github Bot
parent 452dfd7ecc
commit 0c2f4d7cff
6 changed files with 306 additions and 301 deletions

View File

@@ -7,7 +7,7 @@
import type {KeyboardActions} from './MenuBar.js';
import type {App} from './App.js';
import type {Client} from './server.js';
import type Client from './Client.js';
import BaseDevice from './devices/BaseDevice.js';
import {AndroidDevice, IOSDevice} from 'sonar';