Add installation id for feature flags (#3052)

This commit is contained in:
AntsyLich
2026-03-10 23:53:11 +06:00
committed by GitHub
parent 0d768af3d0
commit f6b2684323
9 changed files with 81 additions and 1 deletions
@@ -0,0 +1,12 @@
package mihon.core.common
import kotlin.uuid.ExperimentalUuidApi
import kotlin.uuid.Uuid
object FeatureFlags {
@OptIn(ExperimentalUuidApi::class)
fun newInstallationId(): String {
return Uuid.random().toHexDashString()
}
}