11 lines
231 B
Java
11 lines
231 B
Java
package com.baeldung.reactive.kdoyle;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.reactive.config.EnableWebFlux;
|
|
|
|
@Configuration
|
|
@EnableWebFlux
|
|
public class WebConfig {
|
|
|
|
}
|