Skip to content

Commit 0921ad4

Browse files
committed
refactoring after upgrading server dependencies
1 parent 7702590 commit 0921ad4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

api/src/main/scala/app/softnetwork/notification/api/AllNotificationsPostgresLauncher.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package app.softnetwork.notification.api
22

3+
import akka.actor.typed.ActorSystem
4+
import app.softnetwork.api.server.ApiRoute
35
import app.softnetwork.persistence.jdbc.schema.{JdbcSchemaProvider, JdbcSchemaTypes}
46
import app.softnetwork.persistence.schema.SchemaType
57
import org.slf4j.{Logger, LoggerFactory}
@@ -9,4 +11,7 @@ object AllNotificationsPostgresLauncher extends AllNotificationsApi with JdbcSch
911
lazy val log: Logger = LoggerFactory getLogger getClass.getName
1012

1113
override def schemaType: SchemaType = JdbcSchemaTypes.Postgres
14+
15+
override def apiRoutes: ActorSystem[_] => List[ApiRoute] = _ => List.empty
16+
1217
}

0 commit comments

Comments
 (0)