mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 12:04:21 +01:00
Add LimboConfig.java
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package org.github.tursodatabase;
|
||||
|
||||
import java.util.Properties;
|
||||
|
||||
/**
|
||||
* Limbo Configuration.
|
||||
*/
|
||||
public class LimboConfig {
|
||||
private final Properties pragma;
|
||||
|
||||
public LimboConfig(Properties properties) {
|
||||
this.pragma = properties;
|
||||
}
|
||||
|
||||
public Properties toProperties() {
|
||||
Properties copy = new Properties();
|
||||
copy.putAll(pragma);
|
||||
return copy;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user