WebGoat/java/org/owasp/webgoat/service/BaseService.java

19 lines
387 B
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.owasp.webgoat.service;
import org.springframework.web.bind.annotation.RequestMapping;
/**
*
* @author rlawson
*/
@RequestMapping("/service")
public abstract class BaseService {
}