blob: a8acfe30dea69b6403b6b488bbc6a422c8993b23 [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:convert';
import 'dart:io';
import 'package:symbolizer/model.dart';
ServerConfig loadConfigFromFile({String path = '.config.json'}) {
return ServerConfig.fromJson(jsonDecode(File(path).readAsStringSync()));
}