From 82ea4369b8fee9778c0e89bdf7a1526e15c7d8b9 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Sun, 25 Jan 2015 13:40:11 +0100 Subject: [PATCH] Add master module "dependency" --- source/poodinis/dependency.d | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 source/poodinis/dependency.d diff --git a/source/poodinis/dependency.d b/source/poodinis/dependency.d new file mode 100644 index 0000000..82c05f7 --- /dev/null +++ b/source/poodinis/dependency.d @@ -0,0 +1,12 @@ +/** + * Poodinis Dependency Injection Framework + * Copyright 2014 Mike Bierlee + * This software is licensed under the terms of the MIT license. + * The full terms of the license can be found in the LICENSE file. + */ + +module poodinis.dependency; + +public import poodinis.autowire; +public import poodinis.container; +public import poodinis.registration;