We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7702590 commit 0921ad4Copy full SHA for 0921ad4
api/src/main/scala/app/softnetwork/notification/api/AllNotificationsPostgresLauncher.scala
@@ -1,5 +1,7 @@
1
package app.softnetwork.notification.api
2
3
+import akka.actor.typed.ActorSystem
4
+import app.softnetwork.api.server.ApiRoute
5
import app.softnetwork.persistence.jdbc.schema.{JdbcSchemaProvider, JdbcSchemaTypes}
6
import app.softnetwork.persistence.schema.SchemaType
7
import org.slf4j.{Logger, LoggerFactory}
@@ -9,4 +11,7 @@ object AllNotificationsPostgresLauncher extends AllNotificationsApi with JdbcSch
9
11
lazy val log: Logger = LoggerFactory getLogger getClass.getName
10
12
13
override def schemaType: SchemaType = JdbcSchemaTypes.Postgres
14
+
15
+ override def apiRoutes: ActorSystem[_] => List[ApiRoute] = _ => List.empty
16
17
}
0 commit comments