https://github.com/mineinabyss/features
Simple library for splitting code into features, with DI
https://github.com/mineinabyss/features
Last synced: 2 months ago
JSON representation
Simple library for splitting code into features, with DI
- Host: GitHub
- URL: https://github.com/mineinabyss/features
- Owner: MineInAbyss
- License: mit
- Created: 2026-04-01T02:41:19.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2026-04-01T02:48:25.000Z (3 months ago)
- Last Synced: 2026-04-01T05:09:24.170Z (3 months ago)
- Language: Kotlin
- Size: 102 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# dependencies-kt
Simple DI framework for kotlin, designed for dependency modules that can be closed, restarted, and depend on each other.
## Usage
Add the project in gradle, supported KMP platforms are listed in [the buildscript](core/build.gradle.kts)
```kotlin
repositories {
maven("https://repo.mineinabyss.com/releases")
}
dependencies {
implementation("com.mineinabyss.dependencies:core:x.y.z")
}
```