add new prediction service

This commit is contained in:
heyethereum
2024-08-13 02:34:47 +08:00
parent 53f9acd922
commit c8cfe610a6
45 changed files with 167 additions and 82 deletions

View File

@@ -0,0 +1,12 @@
package com.safeqr.app.utils;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class RestTemplateConfig {
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
}