Endret mappestruktur frontend og backend

This commit is contained in:
amalieem 2023-06-27 13:50:21 +02:00
parent 761e2e1e81
commit 9a20d94904
31 changed files with 0 additions and 78 deletions

View file

@ -0,0 +1,27 @@
plugins {
kotlin("jvm") version "1.8.21"
application
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(11)
}
application {
mainClass.set("MainKt")
}