Skip to content

Instantly share code, notes, and snippets.

@naderghanbari
Created December 27, 2019 02:23
Show Gist options
  • Save naderghanbari/73455418fb68ac056474554d0bfa6f61 to your computer and use it in GitHub Desktop.
Save naderghanbari/73455418fb68ac056474554d0bfa6f61 to your computer and use it in GitHub Desktop.
Scala, Slick, and PostGIS :: Building Domain object
package domain
import java.util.UUID
import org.locationtech.jts.geom.Point
case class Building(id: UUID, name: String, coordinate: Point)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment