mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
17 lines
190 B
JavaScript
17 lines
190 B
JavaScript
|
|
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var cli = require('./local-cli/cli.js');
|
|
|
|
function run() {
|
|
cli.run();
|
|
}
|
|
|
|
module.exports = {
|
|
run: run
|
|
};
|