First commit

This commit is contained in:
2025-01-19 11:07:46 +01:00
commit 8902b17d66
112 changed files with 3476 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package org.neutrino.ktans
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "KTrans",
) {
App()
}
}

View File

@@ -0,0 +1,6 @@
h2 {
driver = org.h2.Driver
url = "jdbc:h2:file:./data/%s;DB_CLOSE_DELAY=-1;"
user = "sa"
password = ""
}