$ git clone [email protected]:techmonad/akka-http-slick.git
$ cd akka-http-slick
$ sbt clean compile test
$ sbt run
$ curl localhost:9000/api/employee/list
[{"name":"jaz","email":"[email protected]","id":1,"companyName":"ABC solution","position":"Senior Consultant"}]
$ curl -XPOST -H 'Content-Type: application/json' localhost:9000/api/employee/create -d '{"name":"jay","email":"[email protected]","id":1,"companyName":"ABC solution","position":"Senior Consultant"}'
Employee created successfully[id: 6]