simplelocalize/simplelocalize-cli

View on GitHub
src/main/java/io/simplelocalize/cli/command/CliCommand.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.simplelocalize.cli.command;

import java.io.IOException;

public interface CliCommand
{
  void invoke() throws IOException, InterruptedException;
}