handleArguments method

Future<void> handleArguments()

Throws a DeepLException if wrong parameters are passed

Implementation

Future<void> handleArguments() async {
  try {
    await _enterDeepLAuthKey();
    await _createLanguageFiles();
  } on DeepLException catch (exception) {
    stdout.writeln('❗ ${exception.message}');
    rethrow;
  }
}