feat: add ip geo

This commit is contained in:
2024-10-23 13:29:56 +08:00
parent 0d73a29d34
commit 57d0737f21
2 files changed
+46 -12

No files matched your search

@@ -0,0 +1,15 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/10/23
*/
package cn.rtast.fancybot.entity
data class IPGeo(
val city: String,
val region: String,
val country: String,
val org: String,
)