var WeBeans = Namespace.declare("com.ceruleanCircle.EAM.3_services",
    class WebBeans extends Thing {
        static start() {
            var WeBeans = window[this.name] = window[this.name] || new this();

        }
        constructor() {
            super();
        }


        init(dependencies) {
            console.log("WeBeans ready");
            return this;
        }
    }
);