BAEL-456: Introduction to Spring Cloud CLI - Bash Scripts (#2745)

* BAEL-456: Introduction to Spring Cloud CLI - Bash Scripts

* Readme added

* Removed batch script artifacts
This commit is contained in:
Adam InTae Gerard
2017-10-15 19:05:55 -07:00
committed by Zeger Hendrikse
parent 4aaaf4cea5
commit 0bfe811063
10 changed files with 143 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
@EnableEurekaServer
class Eureka {}
+6
View File
@@ -0,0 +1,6 @@
@RestController
@RequestMapping('/api')
class api {
@GetMapping('/get')
def get() { [message: 'Hello'] }
}