angel_configuration 2.0.0 copy "angel_configuration: ^2.0.0" to clipboard
angel_configuration: ^2.0.0 copied to clipboard

outdated

Automatic YAML configuration loader for Angel.

example/main.dart

import 'package:angel_configuration/angel_configuration.dart';
import 'package:angel_framework/angel_framework.dart';
import 'package:file/local.dart';

main() async {
  var app = new Angel();
  var fs = const LocalFileSystem();
  await app.configure(configuration(fs));
}