Compare commits
1 Commits
main
...
bugfix/jav
Author | SHA1 | Date | |
---|---|---|---|
3d67c17a0d |
@ -2,6 +2,8 @@ package de.szut.casino;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.web.client.RestTemplate;
|
||||
|
||||
@SpringBootApplication
|
||||
public class CasinoApplication {
|
||||
@ -10,4 +12,8 @@ public class CasinoApplication {
|
||||
SpringApplication.run(CasinoApplication.class, args);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public static RestTemplate restTemplate() {
|
||||
return new RestTemplate();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user