Skip to content

Commit

Permalink
Fix repository path in docs (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-vovk authored Jul 3, 2024
1 parent 9e4176f commit 30f503d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Dependencies private(allocator: Allocator) {

// Use your dependencies in the main app class
object Main extends IOApp.Simple {
override def run: IO[Unit] =
override def run: IO[Unit] =
Dependencies.create(runtime).use { dependencies =>
// use your exit dependency here
dependencies.myServer.useForever
Expand All @@ -68,7 +68,7 @@ To install add the following to your `build.sbt`:
```scala
resolvers += "GitHub Package Registry (igor-vovk)" at "https://maven.pkg.github.com/igor-vovk/_"

libraryDependencies += "io.github.ivovk" %% "cats-effect-simple-di" % "{latest_version}"
libraryDependencies += "io.github.igor-vovk" %% "cats-effect-simple-di" % "{latest_version}"
```

## Debugging allocation order
Expand Down

0 comments on commit 30f503d

Please sign in to comment.