Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34554 tejus.loha 1
package com.smartdukaan.cron.controller;
2
 
3
import org.springframework.http.ResponseEntity;
4
import org.springframework.web.bind.annotation.GetMapping;
5
import org.springframework.web.bind.annotation.RestController;
6
 
7
@RestController
8
public class ExposeController {
9
 
10
    @GetMapping("/expose")
11
    public ResponseEntity<?> expose() {
12
        return ResponseEntity.ok("This is use for Expose");
13
    }
14
}