Initial commit

This commit is contained in:
2026-01-10 14:03:45 +01:00
commit cf36cd5150
17 changed files with 818 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package dev.mednikov.social.users.config;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ObjectMapperConfig {
@Bean
public ObjectMapper objectMapper() {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper;
}
}