Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.smartdukaan.cron.controller;

import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ExposeController {

    @GetMapping("/expose")
    public ResponseEntity<?> expose() {
        return ResponseEntity.ok("This is use for Expose");
    }
}