Skip to content

Commit

Permalink
update api path
Browse files Browse the repository at this point in the history
  • Loading branch information
makeevrserg committed Mar 9, 2024
1 parent 6ecb8bd commit c6b5024
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/features/root/root.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'root'
spec.version = '0.2.4'
spec.version = '0.3.0'
spec.homepage = 'https://empireprojekt.ru'
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import ru.astrainteractive.empireapi.models.response.GenericPagedModel

class RatingApiImpl(
private val httpClient: HttpClient,
private val baseUrl: String = "http://192.168.1.2:8080"
private val baseUrl: String = "https://empireapi.astrainteractive.ru"
) : RatingApi {

override suspend fun users(page: Int, size: Int, body: RatingListRequest): GenericPagedModel<RatingUserModel> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import ru.astrainteractive.empireapi.models.towny.TownsFilter

class TownyApiImpl(
private val httpClient: HttpClient,
private val baseUrl: String = "http://192.168.1.2:8080"
private val baseUrl: String = "https://empireapi.astrainteractive.ru"
) : TownyApi {

override suspend fun towns(page: Int, size: Int, filter: TownsFilter): GenericPagedModel<TownModel> {
Expand Down

0 comments on commit c6b5024

Please sign in to comment.