Skip to content

Commit

Permalink
move proto classes
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw committed Sep 28, 2022
1 parent ca8dec1 commit e8da1ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//
// Protofile syntax: PROTO3

package docs.scaladsl.proto
package docs.sample.order

@SerialVersionUID(0L)
final case class Order(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//
// Protofile syntax: PROTO3

package docs.scaladsl.proto
package docs.sample.order

object OrderProto extends _root_.scalapb.GeneratedFileObject {
lazy val dependencies: Seq[_root_.scalapb.GeneratedFileObject] = Seq.empty
Expand Down
2 changes: 1 addition & 1 deletion tests/src/test/scala/docs/scaladsl/SerializationSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class SerializationSpec extends DocsSpecBase with TestcontainersKafkaLike {
"Protobuf use" should "be documented" in assertAllStagesStopped {
// #protobuf-imports
// the Protobuf generated class
import docs.scaladsl.proto.Order
import docs.sample.order.Order

// #protobuf-imports
val group = createGroupId()
Expand Down

0 comments on commit e8da1ad

Please sign in to comment.