sh-fuse-integration/src/main/java/org/gcube/data/access/storagehub/fs/StorageHubFuseLauncher.java

18 lines
342 B
Java

package org.gcube.data.access.storagehub.fs;
import java.nio.file.Paths;
public class StorageHubFuseLauncher {
public static void main(String ...args) {
String token = args[0];
String scope = args[1];
String path = args[2];
StorageHubFS shFS= new StorageHubFS(token, scope);
shFS.mount(Paths.get(path), true, true);
}
}