You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Backend/tests/src/org/tbasket/test/TestStaticWebService.scala

11 lines
296 B

package org.tbasket.test
import org.tbasket.dispatch.StaticWebService
import zio.ZIO
import zio.http.model.Status.NotFound
import zio.http.{Http, Request, Response}
object TestStaticWebService extends StaticWebService {
override def get(r: Request) = ZIO.attempt(Response.status(NotFound))
}