Created
October 31, 2018 11:18
-
-
Save danielkmariam/117aa7a6e4c0a61ae3345028de3b295c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compilation error | |
not found: type Circe | |
In /Users/danielk/projects/scala/play-training/app/controllers/HomeController.scala:14 | |
10 * This controller creates an `Action` to handle HTTP requests to the | |
11 * application's home page. | |
12 */ | |
13@Singleton | |
14class HomeController @Inject()(cc: ControllerComponents) extends AbstractController(cc) with Circe { | |
15 | |
16 case class Person(name: String, age: Int) | |
17 val daniel = Person("Dan", 18) | |
18 /** |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment