Skip to content
Snippets Groups Projects
Commit 98e5ebaa authored by Martin Vogel's avatar Martin Vogel
Browse files

#414 Move package

parent b21358e4
No related branches found
No related tags found
2 merge requests!2#414 Remaining changes from MR,!1planning#414 Methoden Signaturen (Zwischenstand)
package de.fitko.fitconnect.cmd;
package de.fitko.fitconnect.client.cmd;
import com.beust.jcommander.Parameter;
......
package de.fitko.fitconnect.cmd;
package de.fitko.fitconnect.client.cmd;
import com.beust.jcommander.JCommander;
import de.fitko.fitconnect.client.SenderClient;
public class CommandLineRunner {
public static void main(String[] args) {
public static void main(final String[] args) {
final CommandLineArgs cmdArgs = new CommandLineArgs();
JCommander build = JCommander.newBuilder()
final JCommander build = JCommander.newBuilder()
.addObject(cmdArgs)
.build();
build.parse(args);
var clientId = cmdArgs.clientId;
var secret = cmdArgs.secret;
final var clientId = cmdArgs.clientId;
final var secret = cmdArgs.secret;
// sample high -level- api calls to send a submission
//SenderClient.builder().authenticate(clientId, secret);
//SenderClient.build(clientId, secret)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment