Move CLI samples to sample repo

This commit is contained in:
Oleg Zhurakousky
2023-10-25 16:28:31 +02:00
parent f485eba254
commit fe7aae0590
25 changed files with 1564 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package oz.spring.aws.functions;
import java.util.function.Function;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class FunctionConfiguration {
@Bean
public Function<String, String> uppercase() {
return value -> value.toUpperCase();
}
}