dirgantarasiahaan c459dba989 init drp
2023-05-28 22:25:42 +07:00

12 lines
381 B
Java

package com.iconplus.smartproc.controller;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@CrossOrigin(origins = "http://localhost:8080", allowCredentials = "true")
@RestController
@RequestMapping("/api/drp")
public class DrpController {
}