Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Jun 30, 2023
1 parent 286d6a8 commit a73b644
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
A small toolkit to build functional app with managed resources

```sbt
libraryDependencies += "com.github.geirolz" %% "toolkit-core" % "0.0.7"
libraryDependencies += "com.github.geirolz" %% "toolkit" % "0.0.7"
```

Check the full example [here](https://github.com/geirolz/toolkit/tree/main/example)
Expand Down Expand Up @@ -106,7 +106,7 @@ object Main extends IOApp {
#### pureconfig

```sbt
libraryDependencies += "com.github.geirolz" %% "toolkit-config-pureconfig" % "0.0.7"
libraryDependencies += "com.github.geirolz" %% "toolkit-pureconfig" % "0.0.7"
```

Which allows you to use `withPureConfigLoader` to load the config from a `ConfigSource.default`
Expand Down
8 changes: 4 additions & 4 deletions docs/compiled/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
A small toolkit to build functional app with managed resources

```sbt
libraryDependencies += "com.github.geirolz" %% "toolkit-core" % "0.0.7"
libraryDependencies += "com.github.geirolz" %% "toolkit" % "0.0.7"
```

Check the full example [here](https://github.com/geirolz/toolkit/tree/main/example)
Expand Down Expand Up @@ -40,8 +40,8 @@ object Config {

// Define service dependencies
case class AppDependencyServices(
kafkaConsumer: KafkaConsumer[IO]
)
kafkaConsumer: KafkaConsumer[IO]
)

object AppDependencyServices {
def resource(res: App.Resources[SimpleAppInfo[String], ToolkitLogger[IO], Config, NoResources]): Resource[IO, AppDependencyServices] =
Expand Down Expand Up @@ -106,7 +106,7 @@ object Main extends IOApp {
#### pureconfig

```sbt
libraryDependencies += "com.github.geirolz" %% "toolkit-config-pureconfig" % "0.0.7"
libraryDependencies += "com.github.geirolz" %% "toolkit-pureconfig" % "0.0.7"
```

Which allows you to use `withPureConfigLoader` to load the config from a `ConfigSource.default`
Expand Down

0 comments on commit a73b644

Please sign in to comment.