argos/dmp-backend/src/main/java/eu/eudat/controllers/Users.java

30 lines
428 B
Java
Raw Normal View History

2017-12-15 11:26:25 +01:00
package eu.eudat.controllers;
2018-01-04 10:32:39 +01:00
import eu.eudat.services.ApiContext;
2017-12-15 11:26:25 +01:00
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RestController;
@RestController
@CrossOrigin
2018-01-04 10:32:39 +01:00
public class Users extends BaseController{
@Autowired
public Users(ApiContext apiContext) {
super(apiContext);
}
2017-12-15 11:26:25 +01:00
}
2018-01-17 13:03:51 +01:00
2017-12-15 11:26:25 +01:00