summaryrefslogtreecommitdiffstats
path: root/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ModuleInterface.java
blob: 7d3fc99f269ac7bf3404d47c6018a7001d49b7a3 (plain)
1
2
3
4
5
6
7
8
9
package org.apache.tuscany.sca.binding.erlang.testing;

public interface ModuleInterface {

    String start(String arg1, String arg2) throws Exception;
    
    String start() throws Exception;

}