Add version api endpoint (#66)

This commit is contained in:
Kolby Moroz Liebl
2021-04-29 19:17:23 -06:00
committed by GitHub
parent 1ea821584c
commit 34d8feacdd
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package ir.armor.tachidesk.impl
import ir.armor.tachidesk.BuildConfig
fun getVersion(): String {
return BuildConfig.VERSION
}