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

Commit

Permalink
timer stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Jan 10, 2020
1 parent a482d98 commit 9a3bdc7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/java/com/andromeda/araserver/skills/Timer.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.andromeda.araserver.skills

import java.util.ArrayList

class Timer {
fun main(url:String):String{
val term: String
val mainVal = url.replace("/call/", "")
//parse for search term
val pairs =
ArrayList(listOf(*mainVal.split("&").toTypedArray()))
term = pairs[0]

return ""
}
}

0 comments on commit 9a3bdc7

Please sign in to comment.