Closed zolekm closed 8 years ago
To fix all issues i need to update MongoRepository with @injectable() annotation and ioc lib dev and test with interfaces dep
Best M
I will fix it on the weeken! But you can do a PR :+1:
Thanks for your input :+1:
Now you can clone it without any problems!
@Talento90 thank you :)
Hi as from inversify beta.9 there is no IKernel exported anymore you need to use it like this, can you update seed with thees breaking changes?
`import { Kernel, interfaces } from "inversify";
let kernel: interfaces.Kernel = new Kernel();
kernel.bind<interfaces.Factory>("Weapon").toFactory((context) => {
return () => {
return kernel.get("Weapon");
};
});`
Best, M