Skip to content

Commit

Permalink
move crossword classes
Browse files Browse the repository at this point in the history
  • Loading branch information
alinaboghiu committed Jan 23, 2024
1 parent 6f9eed9 commit 6ddcbf0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package crosswords

import com.gu.contentapi.client.model.v1.{CrosswordDimensions, Crossword}
import com.gu.contentapi.client.model.v1.{Crossword, CrosswordDimensions}
import model.CrosswordPosition

case class AccessibleCrosswordRow(rowNumber: Int, blankColumns: List[Char])
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package crosswords

import crosswords.CrosswordSvg.{BorderSize, CellSize}
import model._
import java.time.LocalDateTime

import java.time.LocalDateTime
import scala.xml.Elem

sealed trait CrosswordPage extends Page
Expand All @@ -27,8 +28,6 @@ class CrosswordPageWithContent(content: CrosswordContent) extends ContentPage {
override lazy val item = content
val crossword = content.crossword

import crosswords.CrosswordSvg.{BorderSize, CellSize}

case class SvgDimensions(width: Int, height: Int) {
def styleString: String = s"width: $width; height: $height"
}
Expand Down
File renamed without changes.

0 comments on commit 6ddcbf0

Please sign in to comment.