Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
working on a new DB system
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Apr 27, 2020
1 parent bae14a3 commit ad34354
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/com/andromeda/araserver/util/DatabaseClient.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
package com.andromeda.araserver.util

object DatabaseClient {
val address:String = System.getenv("dblink")
val password = System.getenv("dbpassword")
fun new(){

}
fun edit(){

}
fun <T>get():T{

}
fun <T>getAll():ArrayList<T>{

}
}

0 comments on commit ad34354

Please sign in to comment.