Aquazus/D1Proxy

View on GitHub
src/main/java/fr/aquazus/d1proxy/commands/Command.java

Summary

Maintainability
A
0 mins
Test Coverage
package fr.aquazus.d1proxy.commands;

import fr.aquazus.d1proxy.network.ProxyClient;

public interface Command {
    String getDescription();
    void execute(ProxyClient proxyClient, String args);
}