src/main/kotlin/com/flightfeather/uav/UAVApplication.kt
@@ -1,6 +1,6 @@ package com.flightfeather.uav import com.flightfeather.uav.socket.SocketServerClient import com.flightfeather.uav.socket.UnderwaySocketServer import org.springframework.boot.ApplicationRunner import org.springframework.boot.autoconfigure.SpringBootApplication import org.springframework.boot.runApplication @@ -11,7 +11,7 @@ @Bean fun runner() = ApplicationRunner{ SocketServerClient().startServer(9000) UnderwaySocketServer().startServer(9030) } }