com.dropchop.quarkus.snakejar.SnakeJarSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-snakejar Show documentation
Show all versions of quarkus-snakejar Show documentation
Quarkus extension that integrates SnakeJar Java library with embedded CPython to Quarkus.
This extension enables calling Python native code from Quarkus REST services.
package com.dropchop.quarkus.snakejar;
import java.util.Properties;
/**
* @author Nikola Ivačič on 6. 11. 21.
*/
public class SnakeJarSupport {
private final Properties properties;
public SnakeJarSupport(Properties properties) {
this.properties = properties;
}
public Properties getProperties() {
return properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy