Skip to content

Commit f026f03

Browse files
committed
refactor!: Shorten package and artifact names from scala-server-toolkit to just sst
1 parent 7b31929 commit f026f03

File tree

41 files changed

+115
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+115
-121
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Scala Server Toolkit
22

33
[![Build Status](https://travis-ci.org/avast/scala-server-toolkit.svg?branch=master)](https://travis-ci.org/avast/scala-server-toolkit)
4-
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/scala-server-toolkit-http4s-blaze-server_2.12/)
4+
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/sst-http4s-blaze-server_2.12/)
55
[![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-brightgreen.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
66

77
This project is a culmination of years of Scala development at Avast and tries to represent the best practices of Scala server development

build.sbt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ lazy val example = project
2828
.enablePlugins(MdocPlugin)
2929
.settings(commonSettings)
3030
.settings(
31-
name := "scala-server-toolkit-example",
31+
name := "sst-example",
3232
publish / skip := true,
3333
run / fork := true,
3434
Global / cancelable := true,
@@ -45,7 +45,7 @@ lazy val http4sBlazeClient = project
4545
.dependsOn(jvmSsl)
4646
.settings(commonSettings)
4747
.settings(
48-
name := "scala-server-toolkit-http4s-blaze-client",
48+
name := "sst-http4s-blaze-client",
4949
libraryDependencies += Dependencies.http4sBlazeClient
5050
)
5151

@@ -54,7 +54,7 @@ lazy val http4sBlazeServer = project
5454
.dependsOn(http4sBlazeClient % Test)
5555
.settings(commonSettings)
5656
.settings(
57-
name := "scala-server-toolkit-http4s-blaze-server",
57+
name := "sst-http4s-blaze-server",
5858
libraryDependencies ++= Seq(
5959
Dependencies.http4sBlazeServer,
6060
Dependencies.http4sDsl,
@@ -66,30 +66,30 @@ lazy val jvmExecution = project
6666
.in(file("jvm-execution"))
6767
.settings(
6868
commonSettings,
69-
name := "scala-server-toolkit-jvm-execution",
69+
name := "sst-jvm-execution",
7070
libraryDependencies += Dependencies.slf4jApi
7171
)
7272

7373
lazy val jvmSsl = project
7474
.in(file("jvm-ssl"))
7575
.settings(
7676
commonSettings,
77-
name := "scala-server-toolkit-jvm-ssl"
77+
name := "sst-jvm-ssl"
7878
)
7979

8080
lazy val jvmSystem = project
8181
.in(file("jvm-system"))
8282
.settings(
8383
commonSettings,
84-
name := "scala-server-toolkit-jvm-system"
84+
name := "sst-jvm-system"
8585
)
8686

8787
lazy val pureconfig = project
8888
.settings(commonSettings)
8989
.settings(
90-
name := "scala-server-toolkit-pureconfig",
90+
name := "sst-pureconfig",
9191
libraryDependencies += Dependencies.pureConfig
9292
)
9393

94-
addCommandAlias("check", "; scalafmtSbtCheck; scalafmtCheckAll; compile:scalafix --check ; test:scalafix --check")
95-
addCommandAlias("fix", "; scalafmtSbt; scalafmtAll; compile:scalafix ; test:scalafix")
94+
addCommandAlias("check", "; scalafmtSbtCheck; scalafmtCheckAll; compile:scalafix --check; test:scalafix --check")
95+
addCommandAlias("fix", "; scalafmtSbt; scalafmtAll; compile:scalafix; test:scalafix; example/mdoc")

docs/http4s.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Module http4s
22

3-
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/scala-server-toolkit-http4s-blaze-server_2.12/)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/sst-http4s-blaze-server_2.12/)
44

5-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-http4s-blaze-server" % "<VERSION>"`
5+
`libraryDependencies += "com.avast" %% "sst-http4s-blaze-server" % "<VERSION>"`
66

77
There are `http4s-*` modules that provide easy initialization of a server and a client. Http4s is an interface with multiple possible
88
implementations - for now we provide only implementations based on [Blaze](https://github.com/http4s/blaze).
@@ -11,9 +11,9 @@ Both server and client are configured via configuration `case class` which conta
1111

1212
```scala
1313
import cats.effect._
14-
import com.avast.server.toolkit.execution.ExecutorModule
15-
import com.avast.server.toolkit.http4s._
16-
import com.avast.server.toolkit.system.console.ConsoleModule
14+
import com.avast.sst.execution.ExecutorModule
15+
import com.avast.sst.http4s._
16+
import com.avast.sst.system.console.ConsoleModule
1717
import org.http4s.dsl.Http4sDsl
1818
import org.http4s.HttpRoutes
1919
import zio.DefaultRuntime
@@ -59,9 +59,9 @@ runtime.unsafeRun(program)
5959

6060
```scala
6161
import cats.effect._
62-
import com.avast.server.toolkit.execution.ExecutorModule
63-
import com.avast.server.toolkit.http4s._
64-
import com.avast.server.toolkit.http4s.middleware.CorrelationIdMiddleware
62+
import com.avast.sst.execution.ExecutorModule
63+
import com.avast.sst.http4s._
64+
import com.avast.sst.http4s.middleware.CorrelationIdMiddleware
6565
import org.http4s.dsl.Http4sDsl
6666
import org.http4s.HttpRoutes
6767
import zio.DefaultRuntime
@@ -80,7 +80,7 @@ for {
8080
routes = Http4sRouting.make {
8181
middleware.wrap {
8282
HttpRoutes.of[Task] {
83-
case req @ GET -> Root =>
83+
case GET -> Root =>
8484
// val correlationId = middleware.retrieveCorrelationId(req)
8585
???
8686
}

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Creating a simple HTTP server is as easy as this:
1212

1313
#### build.sbt
1414

15-
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/scala-server-toolkit-http4s-blaze-server_2.12/)
15+
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/sst-http4s-blaze-server_2.12/)
1616

17-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-http4s-blaze-server" % "<VERSION>"`
17+
`libraryDependencies += "com.avast" %% "sst-http4s-blaze-server" % "<VERSION>"`

docs/jvm.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Modules JVM
22

3-
![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-jvm-system_2.12)
3+
![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-jvm-system_2.12)
44

5-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-jvm-system" % "<VERSION>"`
5+
`libraryDependencies += "com.avast" %% "sst-jvm-system" % "<VERSION>"`
66

7-
There is a set of `scala-server-toolkit-jvm-*` modules that provide pure implementations of different JVM-related utilities:
7+
There is a set of `sst-jvm-*` modules that provide pure implementations of different JVM-related utilities:
88

9-
* `scala-server-toolkit-jvm-execution` - creation of thread pools,
10-
* `scala-server-toolkit-jvm-ssl` - initialization of SSL context,
11-
* `scala-server-toolkit-jvm-system` - standard in/out/err, random number generation.
9+
* `sst-jvm-execution` - creation of thread pools,
10+
* `sst-jvm-ssl` - initialization of SSL context,
11+
* `sst-jvm-system` - standard in/out/err, random number generation.
1212

1313
```scala
14-
import com.avast.server.toolkit.system.console.ConsoleModule
15-
import com.avast.server.toolkit.system.random.RandomModule
14+
import com.avast.sst.system.console.ConsoleModule
15+
import com.avast.sst.system.random.RandomModule
1616
import zio.interop.catz._
1717
import zio.DefaultRuntime
1818
import zio.Task
@@ -23,11 +23,11 @@ val program = for {
2323
console = ConsoleModule.make[Task]
2424
_ <- console.printLine(s"Random number: $randomNumber")
2525
} yield ()
26-
// program: zio.ZIO[Any, Throwable, Unit] = zio.ZIO$FlatMap@4cc26df
26+
// program: zio.ZIO[Any, Throwable, Unit] = zio.ZIO$FlatMap@2ce47652
2727

2828
val runtime = new DefaultRuntime {} // this is just needed in example
29-
// runtime: AnyRef with DefaultRuntime = repl.Session$App$$anon$1@3bab95ca // this is just needed in example
29+
// runtime: AnyRef with DefaultRuntime = repl.Session$App$$anon$1@35becbd4 // this is just needed in example
3030
runtime.unsafeRun(program)
31-
// Random number: 1797916077
31+
// Random number: 1821017404
3232
```
3333

docs/pureconfig.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Module PureConfig
22

3-
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-pureconfig_2.12)](https://repo1.maven.org/maven2/com/avast/scala-server-toolkit-pureconfig_2.12/)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-pureconfig_2.12)](https://repo1.maven.org/maven2/com/avast/sst-pureconfig_2.12/)
44

5-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-pureconfig" % "<VERSION>"`
5+
`libraryDependencies += "com.avast" %% "sst-pureconfig" % "<VERSION>"`
66

77
This module allows you to load your application's configuration file according to a case class provided to it. It uses
88
[PureConfig](https://pureconfig.github.io) library to do so which uses [Lightbend Config](https://github.com/lightbend/config) which means
@@ -11,7 +11,7 @@ that your application's configuration will be in [HOCON](https://github.com/ligh
1111
Loading of configuration is side-effectful so it is wrapped in `F` which is `Sync`. This module also tweaks the error messages a little.
1212

1313
```scala
14-
import com.avast.server.toolkit.pureconfig._
14+
import com.avast.sst.pureconfig._
1515
import pureconfig.ConfigReader
1616
import pureconfig.generic.semiauto.deriveReader
1717
import zio.interop.catz._

example/src/main/mdoc/http4s.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Module http4s
22

3-
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/scala-server-toolkit-http4s-blaze-server_2.12/)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/sst-http4s-blaze-server_2.12/)
44

5-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-http4s-blaze-server" % "<VERSION>"`
5+
`libraryDependencies += "com.avast" %% "sst-http4s-blaze-server" % "<VERSION>"`
66

77
There are `http4s-*` modules that provide easy initialization of a server and a client. Http4s is an interface with multiple possible
88
implementations - for now we provide only implementations based on [Blaze](https://github.com/http4s/blaze).
@@ -11,9 +11,9 @@ Both server and client are configured via configuration `case class` which conta
1111

1212
```scala mdoc:silent:reset-class
1313
import cats.effect._
14-
import com.avast.server.toolkit.execution.ExecutorModule
15-
import com.avast.server.toolkit.http4s._
16-
import com.avast.server.toolkit.system.console.ConsoleModule
14+
import com.avast.sst.execution.ExecutorModule
15+
import com.avast.sst.http4s._
16+
import com.avast.sst.system.console.ConsoleModule
1717
import org.http4s.dsl.Http4sDsl
1818
import org.http4s.HttpRoutes
1919
import zio.DefaultRuntime
@@ -58,9 +58,9 @@ runtime.unsafeRun(program)
5858

5959
```scala mdoc:silent:reset
6060
import cats.effect._
61-
import com.avast.server.toolkit.execution.ExecutorModule
62-
import com.avast.server.toolkit.http4s._
63-
import com.avast.server.toolkit.http4s.middleware.CorrelationIdMiddleware
61+
import com.avast.sst.execution.ExecutorModule
62+
import com.avast.sst.http4s._
63+
import com.avast.sst.http4s.middleware.CorrelationIdMiddleware
6464
import org.http4s.dsl.Http4sDsl
6565
import org.http4s.HttpRoutes
6666
import zio.DefaultRuntime
@@ -79,7 +79,7 @@ for {
7979
routes = Http4sRouting.make {
8080
middleware.wrap {
8181
HttpRoutes.of[Task] {
82-
case req @ GET -> Root =>
82+
case GET -> Root =>
8383
// val correlationId = middleware.retrieveCorrelationId(req)
8484
???
8585
}

example/src/main/mdoc/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Creating a simple HTTP server is as easy as this:
1212

1313
#### build.sbt
1414

15-
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/scala-server-toolkit-http4s-blaze-server_2.12/)
15+
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-http4s-blaze-server_2.12)](https://repo1.maven.org/maven2/com/avast/sst-http4s-blaze-server_2.12/)
1616

17-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-http4s-blaze-server" % "<VERSION>"`
17+
`libraryDependencies += "com.avast" %% "sst-http4s-blaze-server" % "<VERSION>"`

example/src/main/mdoc/jvm.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Modules JVM
22

3-
![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-jvm-system_2.12)
3+
![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-jvm-system_2.12)
44

5-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-jvm-system" % "<VERSION>"`
5+
`libraryDependencies += "com.avast" %% "sst-jvm-system" % "<VERSION>"`
66

7-
There is a set of `scala-server-toolkit-jvm-*` modules that provide pure implementations of different JVM-related utilities:
7+
There is a set of `sst-jvm-*` modules that provide pure implementations of different JVM-related utilities:
88

9-
* `scala-server-toolkit-jvm-execution` - creation of thread pools,
10-
* `scala-server-toolkit-jvm-ssl` - initialization of SSL context,
11-
* `scala-server-toolkit-jvm-system` - standard in/out/err, random number generation.
9+
* `sst-jvm-execution` - creation of thread pools,
10+
* `sst-jvm-ssl` - initialization of SSL context,
11+
* `sst-jvm-system` - standard in/out/err, random number generation.
1212

1313
```scala mdoc
14-
import com.avast.server.toolkit.system.console.ConsoleModule
15-
import com.avast.server.toolkit.system.random.RandomModule
14+
import com.avast.sst.system.console.ConsoleModule
15+
import com.avast.sst.system.random.RandomModule
1616
import zio.interop.catz._
1717
import zio.DefaultRuntime
1818
import zio.Task

example/src/main/mdoc/pureconfig.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Module PureConfig
22

3-
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/scala-server-toolkit-pureconfig_2.12)](https://repo1.maven.org/maven2/com/avast/scala-server-toolkit-pureconfig_2.12/)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.avast/sst-pureconfig_2.12)](https://repo1.maven.org/maven2/com/avast/sst-pureconfig_2.12/)
44

5-
`libraryDependencies += "com.avast" %% "scala-server-toolkit-pureconfig" % "<VERSION>"`
5+
`libraryDependencies += "com.avast" %% "sst-pureconfig" % "<VERSION>"`
66

77
This module allows you to load your application's configuration file according to a case class provided to it. It uses
88
[PureConfig](https://pureconfig.github.io) library to do so which uses [Lightbend Config](https://github.com/lightbend/config) which means
@@ -11,7 +11,7 @@ that your application's configuration will be in [HOCON](https://github.com/ligh
1111
Loading of configuration is side-effectful so it is wrapped in `F` which is `Sync`. This module also tweaks the error messages a little.
1212

1313
```scala mdoc:silent
14-
import com.avast.server.toolkit.pureconfig._
14+
import com.avast.sst.pureconfig._
1515
import pureconfig.ConfigReader
1616
import pureconfig.generic.semiauto.deriveReader
1717
import zio.interop.catz._

example/src/main/scala/com/avast/server/toolkit/example/Main.scala renamed to example/src/main/scala/com/avast/sst/example/Main.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package com.avast.server.toolkit.example
1+
package com.avast.sst.example
22

33
import java.util.concurrent.TimeUnit
44

55
import cats.effect.{Clock, Resource}
6-
import com.avast.server.toolkit.example.config.Configuration
7-
import com.avast.server.toolkit.execution.ExecutorModule
8-
import com.avast.server.toolkit.pureconfig.PureConfigModule
9-
import com.avast.server.toolkit.system.console.{Console, ConsoleModule}
6+
import com.avast.sst.example.config.Configuration
7+
import com.avast.sst.execution.ExecutorModule
8+
import com.avast.sst.pureconfig.PureConfigModule
9+
import com.avast.sst.system.console.{Console, ConsoleModule}
1010
import com.github.ghik.silencer.silent
1111
import zio.interop.catz._
1212
import zio.{Task, ZIO}

example/src/main/scala/com/avast/server/toolkit/example/config/Configuration.scala renamed to example/src/main/scala/com/avast/sst/example/config/Configuration.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.avast.server.toolkit.example.config
1+
package com.avast.sst.example.config
22

33
import pureconfig.ConfigReader
44
import pureconfig.generic.semiauto._
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package com.avast.server.toolkit.http4s
1+
package com.avast.sst.http4s
22

33
import cats.Traverse
44
import cats.effect.{ConcurrentEffect, Resource, Sync}
55
import cats.implicits._
6-
import com.avast.server.toolkit.ssl.{SslContextConfig, SslContextModule}
6+
import com.avast.sst.ssl.{SslContextConfig, SslContextModule}
77
import javax.net.ssl.SSLContext
88
import org.http4s.client.Client
99
import org.http4s.client.blaze.BlazeClientBuilder
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package com.avast.server.toolkit.http4s
1+
package com.avast.sst.http4s
22

33
import java.util.concurrent.TimeUnit
44

5-
import com.avast.server.toolkit.ssl.SslContextConfig
5+
import com.avast.sst.ssl.SslContextConfig
66
import org.http4s.BuildInfo
77
import org.http4s.client.blaze.ParserMode
88
import org.http4s.client.defaults
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.avast.server.toolkit.http4s
1+
package com.avast.sst.http4s
22

33
import cats.effect._
44
import org.http4s.headers.{`User-Agent`, AgentComment, AgentProduct}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package com.avast.server.toolkit.http4s
1+
package com.avast.sst.http4s
22

33
import java.util.concurrent.TimeUnit
44

5-
import com.avast.server.toolkit.http4s.Http4sBlazeServerConfig.SocketOptions
5+
import com.avast.sst.http4s.Http4sBlazeServerConfig.SocketOptions
66
import org.http4s.blaze.channel
77
import org.http4s.server.defaults
88

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.avast.server.toolkit.http4s
1+
package com.avast.sst.http4s
22

33
import java.net.{InetSocketAddress, StandardSocketOptions}
44

http4s-blaze-server/src/main/scala/com/avast/server/toolkit/http4s/Http4sRouting.scala renamed to http4s-blaze-server/src/main/scala/com/avast/sst/http4s/Http4sRouting.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.avast.server.toolkit.http4s
1+
package com.avast.sst.http4s
22

33
import cats.Monad
44
import cats.syntax.all._
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package com.avast.server.toolkit.http4s.middleware
1+
package com.avast.sst.http4s.middleware
22

33
import java.util.UUID
44

55
import cats.data.{Kleisli, OptionT}
66
import cats.effect.Sync
77
import cats.syntax.functor._
8-
import com.avast.server.toolkit.http4s.middleware.CorrelationIdMiddleware.CorrelationId
8+
import com.avast.sst.http4s.middleware.CorrelationIdMiddleware.CorrelationId
99
import io.chrisdavenport.vault.Key
1010
import org.http4s.util.CaseInsensitiveString
1111
import org.http4s.{Header, HttpRoutes, Request, Response}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.avast.server.toolkit.http4s
1+
package com.avast.sst.http4s
22

33
import cats.effect.{ContextShift, IO, Timer}
44
import org.http4s.HttpRoutes

0 commit comments

Comments
 (0)