An open API service indexing awesome lists of open source software.

https://github.com/streetstrider/deeai

minimalistic and well-typed dependency injection
https://github.com/streetstrider/deeai

Last synced: 4 months ago
JSON representation

minimalistic and well-typed dependency injection

Awesome Lists containing this project

README

          

# api
```js
interface Container
{
provide (key, module): Container,
resolve (key): module,
resolve_maybe (key): ?module,
}
```