All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dropchop.quarkus.snakejar.SnakeJarSupport Maven / Gradle / Ivy

Go to download

Quarkus extension that integrates SnakeJar Java library with embedded CPython to Quarkus. This extension enables calling Python native code from Quarkus REST services.

There is a newer version: 1.35.7
Show newest version
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