Create documentation

This commit is contained in:
2021-07-11 19:07:29 +02:00
parent b8331e7420
commit 414dec1f98
10 changed files with 288 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
# Init connection
Before execute any query you must instantiate the connection.
```kotlin
import fr.postgresjson.connexion.Connection
val connection = Connection(
host = "localhost",
port = 5432,
database = "mydb",
username = "john",
password = "azerty"
)
```