16 lines
310 B
Scala
16 lines
310 B
Scala
package api
|
|
|
|
import zio.http.*
|
|
import javax.sql.DataSource
|
|
|
|
/** Route composition point
|
|
*
|
|
* Aggregates all route modules in the application. Add new route modules here as they're created.
|
|
*/
|
|
object Routes {
|
|
|
|
val routes: Routes[DataSource, Response] =
|
|
LandingRoutes.routes ++ HealthRoutes.routes
|
|
|
|
}
|