1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-10 04:02:26 +00:00
plantuml-server/src/test/java/net/sourceforge/plantuml/servlet/server/ServerUtils.java

13 lines
226 B
Java
Raw Normal View History

package net.sourceforge.plantuml.servlet.server;
public interface ServerUtils {
public void startServer() throws Exception;
public void stopServer() throws Exception;
public abstract String getServerUrl();
}