* [BAEL-1641] Find all pairs of numbers in an array that add up to a given sum * Commiting editor's suggested changes * Commiting article Spring Data Reactive Mongo DB microservice in Kotlin * Revert commit for BAEL 1687 - Moving those files to a new branch * [BAEL-1687] - Real-time data streaming using Reactive MongoDB and Kotlin * Reverting changes [BAEL-1641] - Not from this branch * [BAEL-1687] - Code Peer Review - Added suggested changes * [BAEL-1687] - Code Peer Review - Grzegorz's code refactor & delete unnecessary code * [BAEL-1687] - Code Peer Review - Grzegorz's code refactor & delete unnecessary code * [BAEL-1687] - Code Peer Review - Fixed emitter
12 lines
275 B
Kotlin
12 lines
275 B
Kotlin
package com.baeldung
|
|
|
|
import org.springframework.boot.SpringApplication
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication
|
|
|
|
@SpringBootApplication
|
|
class Application
|
|
|
|
fun main(args: Array<String>) {
|
|
SpringApplication.run(Application::class.java, *args)
|
|
}
|