resturcture

This commit is contained in:
Ryan ZHAO
2020-11-25 11:56:00 +11:00
parent 1254f99aaa
commit 0f08fc0103
3419 changed files with 76 additions and 1 deletions

1
sessionsnode/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/build

13
sessionsnode/build.gradle Normal file
View File

@@ -0,0 +1,13 @@
plugins {
id 'java-library'
id 'kotlin'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
}